-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
128 lines (126 loc) · 3.05 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
const { fontFamily } = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./layouts/**/*.{js,ts,jsx,tsx}'
],
variants: {
extend: {
backgroundColor: ['responsive', 'even', 'hover', 'focus']
}
},
darkMode: 'class',
theme: {
themeVariants: ['dark', 'purple'],
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1366px',
'3xl': '1536px',
'4xl': '1681px'
},
extend: {
colors: {
aa: {
50: '#F2F2F3',
100: '#E7E8E8',
200: '#CDCECF',
300: '#AFB0B2',
400: '#8A8C90',
500: '#575B62',
600: '#29323E',
700: '#252C37',
800: '#202630',
900: '#1A1F27',
1000: '#12161C'
},
pt: {
50: '#F5F4F9',
100: '#ECEBF5',
200: '#D7D6EA',
300: '#C0BDDF',
400: '#A6A2D3',
500: '#8780C6',
600: '#6F67B7',
700: '#635CA4',
800: '#56508E',
900: '#464174',
1000: '#312E52'
}
},
fontFamily: {
sans: ['Inter', ...fontFamily.sans]
},
letterSpacing: {
sm: '-0.4px',
md: '-0.8px'
}
}
},
safelist: [
'dark:stroke-red-400',
'dark:stroke-blue-400',
'dark:stroke-yellow-400',
'dark:stroke-green-400',
'dark:stroke-pink-400',
'dark:stroke-rose-400',
'dark:hover:stroke-red-400',
'dark:hover:stroke-blue-400',
'dark:hover:stroke-yellow-400',
'dark:hover:stroke-green-400',
'dark:hover:stroke-pink-400',
'dark:hover:stroke-rose-400',
'dark:hover:bg-red-700',
'dark:hover:bg-blue-700',
'dark:hover:bg-yellow-700',
'dark:hover:bg-green-700',
'dark:hover:bg-pink-700',
'dark:hover:bg-rose-700',
'purple:hover:bg-red-700',
'purple:hover:bg-blue-700',
'purple:hover:bg-yellow-700',
'purple:hover:bg-green-700',
'purple:hover:bg-pink-700',
'purple:hover:bg-rose-700',
'hover:bg-red-100',
'hover:bg-blue-100',
'hover:bg-yellow-100',
'hover:bg-green-100',
'hover:bg-pink-100',
'hover:bg-rose-100',
'hover:stroke-red-800',
'hover:stroke-blue-800',
'hover:stroke-yellow-800',
'hover:stroke-green-800',
'hover:stroke-pink-800',
'hover:stroke-rose-800',
'purple:stroke-red-400',
'purple:stroke-blue-400',
'purple:stroke-yellow-400',
'purple:stroke-green-400',
'purple:stroke-pink-400',
'purple:stroke-rose-400',
'bg-red-50',
'bg-blue-50',
'bg-yellow-50',
'bg-green-50',
'bg-pink-50',
'bg-rose-50',
'stroke-red-500',
'stroke-blue-500',
'stroke-yellow-500',
'stroke-green-500',
'stroke-pink-500',
'stroke-rose-500'
],
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('tailwindcss-multi-theme'),
require('@tailwindcss/line-clamp')
]
};