-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 1.39 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
background: '#F9E6CF',
topography: '#E8EDDF',
event: '#FAC67A',
shadow: '#242423',
secondaryShadow: '#333533',
},
accent: {
sage: '#363062',
taupe: '#DA498D',
action: '#69247C',
},
},
boxShadow: {
soft: '0 4px 6px -1px #3335331A, 0 2px 4px -1px #33353340', // Soft shadow using #333533
medium: '0 5px 15px rgba(36, 36, 35, 0.2)', // Medium shadow using #242423
eventGlow: '0 0 10px rgba(245, 203, 92, 0.5)', // Highlighted glow using #F5CB5C
accentShadow: '0 4px 10px rgba(255, 140, 66, 0.4)', // Accent shadow using #FF8C42
},
screens: {
sm: '435px', // Small devices (e.g., smaller mobile screens)
md: '900px', // Medium devices (e.g., tablets or small laptops)
lg: '1200px', // Large devices (e.g., desktops)
xl: '1440px', // Extra-large screens (e.g., high-resolution desktops)
'2xl': '1920px', // 4K screens and larger
},
fontFamily: {
heading: ['Roboto', 'sans-serif'], // Roboto for headings
body: ['Poppins', 'sans-serif'], // Poppins for other text
},
},
},
plugins: [],
}