-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 820 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 820 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
darkback: {
50: "#edf1fc",
100: "#d3d4e1",
200: "#b6b8c9",
300: "#989bb2",
400: "#7c7f9b",
500: "#636582",
600: "#4c4f66",
700: "#363849",
800: "#21222e",
900: "#0a0a16",
},
premier: {
50: "#edf4fd",
100: "#ced7e5",
200: "#afbbcf",
300: "#909fbb",
400: "#7081a7",
500: "#57668e",
600: "#444d6f",
700: "#303650",
800: "#2b3147",
900: "#080d17",
},
},
},
},
variants: {
extend: {},
},
plugins: [],
}