-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
93 lines (92 loc) · 2.04 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/** @type {import('tailwindcss').Config} */
module.exports = {
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
content: ["./**/templates/**/*.html"],
darkMode: "class",
theme: {
extend: {
colors: {
gruv: {
red: {
50: "#fb4934",
100: "#cc241d",
200: "#9d0006",
},
orange: {
50: "#fe8019",
100: "#d65d0e",
200: "#af3a03",
},
yellow: {
50: "#fabd2f",
100: "#d79921",
200: "#b57614",
},
green: {
50: "#b8bb26",
100: "#98971a",
200: "#79740e",
},
aqua: {
50: "#8ec07c",
100: "#689d6a",
200: "#427b58",
},
blue: {
50: "#83a598",
100: "#458588",
200: "#076678",
},
purple: {
50: "#d3869b",
100: "#b16286",
200: "#8f3f71",
},
50: "#fbf1c7",
100: "#ebdbb2",
200: "#d5c4a1",
300: "#bdae93",
400: "#a89984",
500: "#7c6f64",
600: "#665c54",
700: "#504945",
800: "#3c3836",
850: "#32302f",
900: "#282828",
950: "#1d2021",
bg: "#282828",
fg: "#ebdbb2",
},
},
typography: (theme) => ({
DEFAULT: {
css: {
a: {
textDecoration: "none",
"&:hover": {
textDecoration: "underline",
},
"&:visited": {},
},
},
},
}),
},
fontFamily: {
sans: [
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
serif: [
"serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
},
};