-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
119 lines (118 loc) · 2.54 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
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
transparent: "transparent",
inherit: "inherit",
current: "currentColor",
black: {
50: "#333333",
100: "#000000",
},
white: colors.white,
primary: {
50: "#d6e4ff",
100: "#adc8ff",
200: "#84a9ff",
300: "#6690ff",
400: "#5680ff",
500: "#3366ff",
DEFAULT: "#3366ff",
600: "#254edb",
700: "#1939b7",
800: "#102693",
900: "#091a7a",
},
teal: {
50: "#d6fced",
100: "#aff9e2",
200: "#83edd6",
300: "#61dccc",
400: "#45cfca",
500: "#33c5bf",
DEFAULT: "#33c5bf",
600: "#25a3a9",
650: "#209FA6",
700: "#197e8d",
800: "#105c72",
850: "#125496",
900: "#09435e",
},
green: {
50: "#d3fcd1",
100: "#a4faa8",
200: "#74f288",
300: "#51e676",
400: "#3adb73",
500: "#1dd65e",
DEFAULT: "#1dd65e",
600: "#15b85e",
700: "#0e9a5b",
800: "#097c53",
900: "#05664e",
},
blue: {
50: "#d7f9ff",
100: "#b0eeff",
200: "#88dfff",
300: "#6bceff",
400: "#56beff",
500: "#3ab3ff",
DEFAULT: "#3ab3ff",
600: "#2a8cdb",
700: "#1d69b7",
800: "#124a93",
900: "#0b347a",
},
yellow: {
50: "#fff6ce",
100: "#ffeb9c",
200: "#ffdd6c",
300: "#ffcf47",
400: "#ffc229",
500: "#ffb90a",
DEFAULT: "#ffb90a",
600: "#db9807",
700: "#b77a05",
800: "#935d03",
900: "#7a4901",
},
red: {
50: "#ffe4d5",
100: "#ffc3ab",
200: "#ff9a81",
300: "#ff7461",
400: "#ff4c46",
500: "#ff342d",
DEFAULT: "#ff342d",
600: "#db202a",
700: "#b7162c",
800: "#930e2b",
900: "#7a082b",
},
gray: {
50: "#f2f5fb",
100: "#e5ecf7",
200: "#cfd8e8",
300: "#b6bed2",
400: "#a0aac1",
500: "#949db4",
DEFAULT: "#949db4",
600: "#6c779a",
700: "#4a5681",
800: "#2f3a68",
900: "#1c2556",
950: "#20253a",
975: "#080B1A",
},
slate: {
DEFAULT: "#EDEDED",
90: "#242424",
80: "#333333",
},
},
extend: {},
},
plugins: [],
};