-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
34 lines (34 loc) · 1.45 KB
/
tailwind.config.cjs
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
module.exports = {
content: ['./index.html', './src/**/*.{svelte,js,ts}'],
darkMode: ['class', '[data-mode="dark-theme"]'],
theme: {
extend: {
colors: {
'app-bg': 'var(--background-color)',
'app-text': 'var(--text-color)',
'app-text-secondary': 'var(--text-color-secondary)',
'app-text-invert': 'var(--text-color-invert)',
'app-anchor-text': 'var(--anchor-text-color)',
'app-anchor-button': 'var(--text-color)',
'app-modal-bg': 'var(--modal-background-color)',
'app-primary': 'var(--primary-color)',
'app-secondary': 'var(--secondary-color)',
'app-neutral': 'var(--neutral-color)',
'app-wordle-correct': 'var(--wordle-correct-color)',
'app-wordle-present': 'var(--wordle-present-color)',
'app-wordle-absent': 'var(--wordle-absent-color)',
'app-wordle-exact': 'var(--wordle-exact-color)',
'app-wordle-exact-bg': 'var(--wordle-exact-background-color)',
'app-keyboard-bg': 'var(--keyboard-background-color)',
'app-keyboard-text': 'var(--keyboard-text-color)',
'app-keyboard-text-invert': 'var(--keyboard-text-color-invert)',
'app-keyboard-correct': 'var(--keyboard-correct-color)',
'app-keyboard-present': 'var(--keyboard-present-color)',
'app-keyboard-absent': 'var(--keyboard-absent-color)',
'app-alert-bg': 'var(--alert-background-color)',
},
},
},
plugins: [],
prefix: 'tw-',
}