-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
51 lines (51 loc) · 1.05 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
module.exports = {
purge: {
// enabled: true,
content: ["./**/*.html"],
options: {
// Pass directly to PurgeCss options
// https://purgecss.com/configuration.html#options
},
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
textColor: {
skin: {
base: "var(--color-text-base)",
headline: "var(--color-text-headline)",
subhead: "var(--color-text-subhead)",
},
},
backgroundColor: {
skin: {
app: "var(--color-app)",
},
},
colors: {
primary: {
light: "#49BBE9",
DEFAULT: "#1eace3",
dark: "#1996C8",
},
secondary: {
light: "#EE5994",
DEFAULT: "#e9327c",
dark: "#DE1767",
},
},
fontFamily: {
display: ["Rajdhani"],
sans: ["Roboto"],
},
},
},
variants: {
extend: {
backgroundColor: ["active"], // not enabled by default
},
},
plugins: [
require("@tailwindcss/forms")
],
};