-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (42 loc) · 801 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
43 lines (42 loc) · 801 Bytes
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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
colors: {
"primary":
{
900: "#0f172a",
800: "#01e293b",
700: "#334155",
600: "#64748b",
500: "#64748b",
400: "#94a3b8",
300: "#cbd5e1",
200: "#e2e8f0",
100: "#f1f5f9",
50: "#f8fafc",
},
"white": "#ffffff",
"text": {
"normal": "#ffffff",
"light": "#4b5563",
"dark": "##111827",
}
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif'],
},
extend: {
}
},
plugins: [],
}