forked from gqty-dev/GQty-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (59 loc) · 1.3 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
light: "#EF46BC",
dark: "#E767C0",
},
success: {
light: "#23A30F",
dark: "#85F273",
},
warning: {
light: "#F5D422",
dark: "#FFEB7C",
},
error: {
light: "#EF3726",
dark: "#FF8579",
},
surface: {
light: {
50: "#FBF9FA",
100: "#E2E0E2",
200: "#CAC8C9",
300: "#B2AFB1",
400: "#999798",
500: "#807E80",
600: "#686667",
700: "#504D4F",
800: "#373536",
900: "#201C1E",
},
dark: {
50: "#151215",
100: "#2E2B2E",
200: "#474447",
300: "#605E60",
400: "#797779",
500: "#929091",
600: "#ABA9AA",
700: "#C3C3C3",
800: "#DCDCDC",
900: "#F5F5F5",
},
},
},
},
},
plugins: [],
};