-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
34 lines (34 loc) · 940 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx,vue}",
],
theme: {
extend: {
textColor: {
skin: {
base: 'var(--color-text-base)',
inverted: 'var(--color-text-inverted)',
accent: 'var(--color-text-accent)'
}
},
backgroundColor: {
skin: {
fill: 'var(--color-fill)',
'fill-container': 'var(--color-fill-container)',
'fill-inverted': 'var(--color-fill-inverted)',
'button-main': 'var(--color-button-main)',
'button-main-hover': 'var(--color-button-main-hover)',
'button-main-active': 'var(--color-button-main-active)'
}
},
borderColor: {
skin: {
'input-border': 'var(--color-input-border)'
}
}
}
},
plugins: [],
}