-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
34 lines (33 loc) · 982 Bytes
/
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
/** @type {import("tailwindcss").Config} */
module.exports = {
content: ["public/**/*.html"],
plugins: [],
theme: {
extend: {
backgroundColor: {
theme: {
"button-accent": "rgb(var(--color-button-accent) / <alpha-value>)",
"button-accent-hover":
"rgb(var(--color-button-accent-hover) / <alpha-value>)",
fill: "rgb(var(--color-fill), <alpha-value>)",
"button-muted": "rgb(var(--color-button-muted) / <alpha-value>)",
},
},
fontFamily: {
sans: ["GT Walsheim Pro", "sans-serif"],
},
gradientColorStops: {
theme: {
hue: "rgb(var(--color-fill) / <alpha-value>)",
},
},
textColor: {
theme: {
base: "rgb(var(--color-text-base) / <alpha-value>)",
inverted: "rgb(var(--color-text-inverted) / <alpha-value>)",
muted: "rgb(var(--color-text-muted) / <alpha-value>)",
},
},
},
},
};