-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (46 loc) · 795 Bytes
/
tailwind.config.js
File metadata and controls
47 lines (46 loc) · 795 Bytes
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
/** @type {import('tailwindcss').Config} */
import plugin from "tailwindcss/plugin.js";
export default {
content: ["./src/**/*.{html,js,njk,md}"],
darkMode: "class",
theme: {
extend: {
colors: {
base: {
light: "#fff6ee",
dark: "#22296B",
},
main: {
light: "#f2ae83",
dark: "#035C9E",
},
imp: {
light: "#11514E",
dark: "#ED3659",
},
normal: {
light: "#FE9C9B",
dark: "#FE9600",
},
rest: {
light: "#FFFFFF",
dark: "#000000",
},
text: {
light: "#191919",
dark: "#FFFFFF",
},
},
},
},
plugins: [
plugin(function ({ addBase, addComponents, addUtilities, theme }) {
addBase({
h3: {
fontSize: theme("fontSize.lg"),
fontWeight: 700,
},
});
}),
],
};