-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
27 lines (27 loc) · 888 Bytes
/
tailwind.config.js
File metadata and controls
27 lines (27 loc) · 888 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
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
// These CSS variables are in index.css app stylesheet
primary: 'var(--primary)',
primary_variant: 'var(--primary_variant)',
secondary: 'var(--secondary)',
secondary_variant: 'var(--secondary_variant)',
background: 'var(--background)',
typography: 'var(--typography)',
dark_primary: 'var(--dark_primary)',
dark_primary_variant: 'var(--dark_primary_variant)',
dark_secondary: 'var(--dark_secondary)',
dark_secondary_variant: 'var(--dark_secondary_variant)',
dark_background: 'var(--dark_background)',
dark_typography: 'var(--dark_typography)',
}
},
},
variants: {
extend: {},
},
plugins: [],
}