-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
68 lines (68 loc) · 2.02 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
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: "media", // or 'media' or 'class'
theme: {
extend: {
maxWidth: {
screen4xl: "2048px",
},
minWidth: {
bigBox: "300px",
},
minHeight: {
bigBox: "400px",
},
maxHeight: {
400: "400px",
bigBox: "550px",
},
colors: {
white: {
DEFAULT: "var(--color-lighttheme-white)",
shadow: "var(--color-lighttheme-white-shadow)",
textLt: "var(--color-lighttheme-text-light)",
textDt: "var(--color-darktheme-text-light)",
},
accent: {
light: "var(--color-lighttheme-accent-light)",
lightShadow: "var(--color-lighttheme-accent-light-shadow)",
lighter: "var(--color-lighttheme-accent-lighter)",
lighterShadow: "var(--color-lighttheme-accent-lighter-shadow)",
DEFAULT: "var(--color-lighttheme-accent)",
shadow: "--color-lighttheme-accent-shadow",
},
black: {
light: "var(--color-darktheme-black-light)",
lightShadow: "var(--color-darktheme-black-light-shadow)",
lighter: "var(--color-darktheme-black-lighter)",
lighterShadow: "var(--color-darktheme-black-lighter-shadow)",
DEFALUT: "var(--color-darktheme-black)",
shadow: "var(--color-darktheme-black-shadow)",
textLt: "var(--color-lighttheme-text-dark)",
textDt: "var(--color-darktheme-text-dark)",
},
red: {
DEFAULT: "var(--color-macstyle-btn-red)",
},
green: {
DEFAULT: "var(--color-macstyle-btn-green)",
},
yellow: {
DEFAULT: "var(--color-macstyle-btn-yellow)",
chartbg: "#FFEFE2",
},
grey: {
DEFAULT: "#F8F8F8",
},
blue: {
DEFAULT: "#86B2F4",
antarticBlue: "#2B3F5C",
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};