-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
32 lines (32 loc) · 1.1 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
export default {
content: ["./content-script/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"background-primary": "var(--st-background-primary)",
"background-secondary": "var(--st-background-secondary)",
"background-active": "var(--st-background-active)",
"text-primary": "var(--st-text-primary)",
"text-secondary": "var(--st-text-secondary)",
"spec-outline": "var(--st-spec-outline)",
"spec-badge-chip-background": "var(--st-spec-badge-chip-background)",
"icon-shape-color": "var(--st-icon-shape-color)",
"spec-wordmark-text": "var(--st-spec-wordmark-text)",
"spec-button-chip-background-hover":
"var(--st-spec-button-chip-background-hover)",
"spec-base-background": "var(--st-spec-base-background)",
"spec-menu-background": "var(--st-spec-menu-background)",
"button-bg": "var(--st-button-bg)",
"button-text-disabled": "var(--st-button-text-disabled)",
},
fontFamily: {
primary: "var(--st-font-primary)",
secondary: "var(--st-font-secondary)",
},
boxShadow: {
"box-shadow": "var(--st-box-shadow)",
},
},
},
plugins: [],
};