-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (27 loc) · 872 Bytes
/
tailwind.config.js
File metadata and controls
28 lines (27 loc) · 872 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class', // Enable dark mode with class strategy
theme: {
extend: {
colors: {
primary: 'var(--color-primary)',
secondary: 'var(--color-secondary)',
accent: 'var(--color-accent)',
'primary-text': 'var(--color-text-primary)',
'secondary-text': 'var(--color-text-secondary)',
'primary-bg': 'var(--color-bg-primary)',
'secondary-bg': 'var(--color-bg-secondary)',
'accent-hover': 'var(--color-accent-hover)',
'border-color': 'var(--color-border)',
'card-bg': 'var(--color-card-bg)',
'button-primary': 'var(--color-button-primary)',
'button-secondary': 'var(--color-button-secondary)',
},
},
},
plugins: [],
}