-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
81 lines (81 loc) · 2.06 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
darkMode: "selector",
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
colors: {
transparent: "transparent",
primary: {
light: "#edeff7",
"light-hover": "#e4e7f2",
"light-active": "#c7cde5",
normal: "#4b5eaa",
"normal-hover": "#445599",
"normal-active": "#3c4b88",
dark: "#384780",
"dark-hover": "#2d3866",
"dark-active": "#222a4c",
darker: "#1a213b",
},
secondary: {
light: "#fffaea",
"light-hover": "#fff7df",
"light-active": "#ffeebc",
normal: "#ffc928",
"normal-hover": "#e6b524",
"normal-active": "#cca120",
dark: "#bf971e",
"dark-hover": "#997918",
"dark-active": "#735a12",
darker: "#59460e",
},
dark: {
lighter: "#b2bbc6",
"light-hover": "#a3adbb",
"light-active": "#909dad",
"normal-hover": "#47586e",
"normal-active": "#3d4c5e",
dark: "#1d242d",
"dark-hover": "#151a20",
"dark-active": "#090b0e",
},
cyan: {
light: "#eef9fa",
"light-hover": "#e6f6f8",
"light-active": "#cbedf0",
normal: "#56c5d0",
"normal-hover": "#4db1bb",
"normal-active": "#459ea6",
dark: "#41949c",
"dark-hover": "#34767d",
"dark-active": "#27595e",
darker: "#1e4549",
},
surface: {
white: "#ffffff",
"white-hover": "#fdfdfe",
"white-active": "#f8f9fb",
light: "#fdfdfe",
"light-hover": "#f8f9fb",
"light-active": "#f4f6f9",
normal: "#fafcfc",
"normal-hover": "#f5f7f9",
"normal-active": "#eff3f6",
dark: "#f8fafb",
},
},
extend: {
fontFamily: {
poppins: ["Poppins", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
},
},
},
plugins: [],
};