This repository has been archived by the owner on Jun 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
68 lines (67 loc) · 1.87 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 = {
content: ["./pages/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
// light themes
priml: "#186c32",
"on-priml": "#ffffff",
"prim-ctl": "#a2f5ab",
"on-prim-ctl": "#002107",
secondl: "#516351",
"on-secondl": "#ffffff",
"second-ctl": "#d4e8d1",
"on-second-ctl": "#0f1f11",
tertiaryl: "#3a656d",
"on-tertiaryl": "#ffffff",
"tertiary-ctl": "#bdeaf3",
"on-tertiary-ctl": "#001f24",
errorl: "#ba1b1b",
"on-errorl": "#ffffff",
"error-ctl": "#ffdad4",
"on-error-ctl": "#410001",
outlinel: "#727970",
bgl: "#fcfcf7",
"on-bgl": "#1a1c19",
sfl: "#fcfcf7",
"on-sfl": "#1a1c19",
"sf-vartl": "#dee5da",
"on-sf-vartl": "#414940",
"inv-sfl": "#2f312e",
"inv-on-sfl": "#f0f1eb",
// dark themes
primd: "#87d992",
"on-primd": "#003912",
"prim-ctd": "#00531e",
"on-prim-ctd": "#a2f5ab",
secondd: "#b7ccb5",
"on-secondd": "#243425",
"second-ctd": "#394b3a",
"on-second-ctd": "#d4e8d1",
tertiaryd: "#a1ced7",
"on-tertiaryd": "#00363d",
"tertiary-ctd": "#1f4d54",
"on-tertiary-ctd": "#bdeaf3",
errord: "#ffb4a9",
"on-errord": "#680003",
"error-ctd": "#930006",
"on-error-ctd": "#ffdad4",
outlined: "#8b9389",
bgd: "#1a1c19",
"on-bgd": "#e1e3dd",
sfd: "#1a1c19",
"on-sfd": "#e1e3dd",
"sf-vartd": "#414940",
"on-sf-vartd": "#c1c9be",
"inv-sfd": "#e1e3dd",
"inv-on-sfd": "#1a1c19",
},
fontFamily: {
poi: ["'Poiret One'", "cursive"],
zen: ["'Zen Kaku Gothic New'", "sans-serif"],
},
},
},
plugins: [],
};