-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
67 lines (66 loc) · 1.57 KB
/
tailwind.config.js
File metadata and controls
67 lines (66 loc) · 1.57 KB
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
// -*- eval: (rainbow-mode 1) -*-
module.exports = {
mode: "jit",
content: [
"index.html",
"assets/**/*",
"src/**/*.html",
"src/**/*.jsx",
"src/**/*.tsx",
],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["Ageo", "Helvetica", "Arial", "sans-serif"],
},
fontSize: {
"3xs": ".5rem",
"2xs": ".6rem",
"7xl": "5rem",
},
colors: {
// primary:
// - black and white
ink: "#191818",
cloud: "#F2F2F2",
platinum: "#FCFCFC",
coconut: "#FEFEFE",
// TODO: update the color names with grey
battleship: "#7E7E7E",
grey: "#8D8D8D",
silver: "#AFAFAF",
lightgrey: "#EAEAEA",
// - greys
grey600: "#7E7E7E",
grey500: "#8D8D8D",
grey400: "#AFAFAF",
grey300: "#D7D7D7",
grey200: "#EDEDED",
grey100: "#EAEAEA",
grey50: "#F6F6F6",
// - reds and pinks
brick: "#D43857",
cardinal: "#E71F54",
blush: "#F28599",
puff: "#FDEDF2",
// - blues
cobalt: "#1A73E8",
peppermint: "#F3F8FE",
// - green
parakeet: "#1EC69C",
// secondary:
clover: "#20C882",
monarch: "#FA6400", // warning messages
flame: "#E74C3C", // error messages
proton: "#7451F0",
butterscotch: "#F7B500",
lapis: "#0080FF", // info messages
salamander: "#FF4400",
royal: "#7700F4",
bubblegum: "#FF14B0",
aqua: "#00DFEC",
},
},
},
};