-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (50 loc) · 1.33 KB
/
Copy pathtailwind.config.js
File metadata and controls
50 lines (50 loc) · 1.33 KB
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
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./**/*.html', '!./node_modules/**'],
theme: {
extend: {
fontFamily: {
display: ['Rubik', 'sans-serif'],
body: ['Nunito Sans', 'sans-serif'],
},
colors: {
primary: '#2563EB',
'primary-dark': '#1D4ED8',
secondary: '#3B82F6',
accent: '#059669',
'accent-dark': '#047857',
surface: '#F8FAFC',
muted: '#F1F5FD',
border: '#E4ECFC',
foreground: '#0F172A',
'dark-surface': '#0B1120',
'dark-card': '#111827',
'dark-elevated': '#1A2235',
'dark-border': '#1E293B',
'dark-muted': '#334155',
'dark-foreground': '#F1F5F9',
'dark-dim': '#94A3B8',
},
boxShadow: {
soft: '0 10px 40px -10px rgba(37, 99, 235, 0.15)',
glow: '0 0 40px rgba(37, 99, 235, 0.15)',
},
animation: {
float: 'float 6s ease-in-out infinite',
glow: 'glow 4s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
glow: {
'0%, 100%': { opacity: '0.45' },
'50%': { opacity: '0.8' },
},
},
},
},
plugins: [],
};