-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (33 loc) · 975 Bytes
/
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
const colors = require("tailwindcss/colors");
// remove new color warnings
delete colors["lightBlue"];
delete colors["warmGray"];
delete colors["trueGray"];
delete colors["coolGray"];
delete colors["blueGray"];
//
module.exports = {
darkMode: "media", // or 'media' or 'class'
theme: {
extend: {
colors: {
...colors,
light: {
"text-normal": colors.gray[600],
"text-dimmed": colors.gray[300],
surface: "white",
secondSurface: colors.gray[50],
elevation: colors.gray[100],
},
dark: {
"text-normal": "#aeb8c7",
"text-dimmed": "#768390",
surface: "#242324",
secondSurface: colors.gray[700],
elevation: "#2E2D2E",
},
},
},
},
plugins: [],
};