-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
85 lines (85 loc) · 2.04 KB
/
tailwind.config.js
File metadata and controls
85 lines (85 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
dark: {
bg: '#0a0a0f',
card: '#151521',
border: '#2d2d3d',
},
light: {
bg: '#ffffff',
card: '#f8fafc',
border: '#e2e8f0',
},
brand: {
primary: '#6366F1', // indigo-500
secondary: '#8B5CF6', // violet-500
accent: '#06B6D4', // cyan-500
},
},
fontFamily: {
sans: [
'Inter',
"ui-sans-serif",
"system-ui",
"-apple-system",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Arial",
"Noto Sans",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
"sans-serif"
],
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '1.5rem',
lg: '2rem',
xl: '2.5rem',
'2xl': '3rem',
},
},
boxShadow: {
'elevated': '0 10px 30px rgba(0,0,0,0.08)',
'soft': '0 4px 16px rgba(0,0,0,0.06)',
},
borderRadius: {
xl: '1rem',
'2xl': '1.25rem',
},
animation: {
'shimmer': 'shimmer 2s infinite',
'float': 'float 3s ease-in-out infinite',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'bounce-slow': 'bounce 2s infinite',
},
keyframes: {
shimmer: {
'0%': { backgroundPosition: '-1000px 0' },
'100%': { backgroundPosition: '1000px 0' },
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
}