-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
22 lines (22 loc) · 961 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
"primary": "hsl(var(--color-primary) / <alpha-value>)",
"secondary": "hsl(var(--color-secondary) / <alpha-value>)",
"bg-card": "hsl(var(--color-bg-card) / <alpha-value>)",
"bg-card-hover": "hsl(var(--color-bg-card-hover) / <alpha-value>)",
"text-primary": "hsl(var(--color-text-primary) / <alpha-value>)",
"text-secondary": "hsl(var(--color-text-secondary) / <alpha-value>)",
"bg-hover": "hsl(var(--color-hover) / <alpha-value>)",
border: "hsl(var(--color-border) / <alpha-value>)",
"border-hover": "hsl(var(--color-border-hover) / <alpha-value>)",
accent: "hsl(var(--color-accent) / <alpha-value>)",
"accent-hover": "hsl(var(--color-accent-hover) / <alpha-value>)",
},
},
},
};