-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
104 lines (104 loc) · 2.79 KB
/
tailwind.config.js
File metadata and controls
104 lines (104 loc) · 2.79 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
safelist: [
'xl5:grid-cols-5',
'xxl:grid-cols-6',
'3xl:grid-cols-8',
'animate-gradient-orbit-1',
'animate-gradient-orbit-2',
'animate-gradient-orbit-3',
'animate-gradient-orbit-4',
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'],
},
screens: {
'xl5': '1500px',
'xxl': '1640px',
'3xl': '2400px',
},
keyframes: {
'gradient-shift': {
'0%, 100%': {
transform: 'translate(0%, 0%) scale(1.5) rotate(0deg)',
},
'25%': {
transform: 'translate(30%, -20%) scale(2) rotate(5deg)',
},
'50%': {
transform: 'translate(20%, 30%) scale(1.8) rotate(-5deg)',
},
'75%': {
transform: 'translate(-30%, 20%) scale(1.6) rotate(3deg)',
},
},
'gradient-shift-slow': {
'0%, 100%': {
transform: 'translate(0%, 0%) scale(1.5) rotate(0deg)',
},
'50%': {
transform: 'translate(-40%, -40%) scale(2.2) rotate(-8deg)',
},
},
'gradient-x': {
'0%, 100%': {
transform: 'translateX(-50%) scale(1.8)',
},
'50%': {
transform: 'translateX(50%) scale(2.3)',
},
},
'gradient-x-reverse': {
'0%, 100%': {
transform: 'translateX(50%) scale(1.8)',
},
'50%': {
transform: 'translateX(-50%) scale(2.3)',
},
},
},
animation: {
'gradient-shift': 'gradient-shift 12s ease-in-out infinite',
'gradient-shift-slow': 'gradient-shift-slow 14s ease-in-out infinite',
'gradient-x': 'gradient-x 16s ease-in-out infinite',
'gradient-x-reverse': 'gradient-x-reverse 18s ease-in-out infinite',
},
colors: {
primary: {
DEFAULT: '#0ea5e9',
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
secondary: {
DEFAULT: '#FFD900',
50: '#FFFEF0',
100: '#FFFCE0',
200: '#FFF9C2',
300: '#FFF5A3',
400: '#FFF285',
500: '#FFD900',
600: '#CCAD00',
700: '#998200',
800: '#665600',
900: '#332B00',
},
},
},
},
plugins: [],
}