-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
lg: "1024px",
md: "768px",
sm: "640px",
xs: "540px",
},
extend: {
typography: (theme) => ({
dark: {
css: {
color: "red",
},
},
light: {
css: {
color: "blue",
},
},
}),
},
colors: {
primary: "#151925",
"white-fa": "#fafafa",
"white-fe": "#EFEEEE",
"grey-c1": "#C3C1C1",
"grey-35": "#353535",
"grey-51": "#515151",
"blue-e6": "#00E6E6",
"blue-d2": "#181D2A",
"black-0d": "#0D0D0D",
"grey-1e": "#1e1e1e",
"grey-f3": "#f3f3f3",
"grey-63": "#636363",
"grey-ea": "#eaeaea",
"grey-9e": "#9E9B9B",
"blue-28": "#283049",
"white-e2": "#E2E2E2",
"grey-6a": "#6b6a6a",
},
},
plugins: [],
darkMode: "class",
};