-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
54 lines (54 loc) · 1.55 KB
/
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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/index.html',
'./app/components/**/*.hbs',
'./app/templates/**/*.hbs',
],
theme: {
extend: {
colors: {
alt: 'var(--alt-color)',
'alt-hover': 'var(--alt-hover-color)',
'btn-bg-primary': 'var(--btn-bg-primary)',
'btn-bg-primary-hover': 'var(--btn-bg-primary-hover)',
'btn-bg-secondary': 'var(--btn-bg-secondary)',
'btn-bg-secondary-hover': 'var(--btn-bg-secondary-hover)',
'btn-text-primary': 'var(--btn-text-primary)',
'btn-text-secondary': 'var(--btn-text-secondary)',
checkbox: 'var(--checkbox)',
heading: 'var(--heading-color)',
'input-bg': 'var(--input-bg)',
'input-border': 'var(--input-border)',
main: 'var(--main-color)',
menu: 'var(--menu-color)',
'menu-text': 'var(--menu-text-color)',
'menu-text-hover': 'var(--menu-text-hover-color)',
'main-text': 'var(--main-text)',
'sub-text': 'var(--sub-text)',
},
fontSize: {
smallest: '0.5rem',
xxs: '0.65rem',
},
width: {
36: '9rem',
},
},
fill: (theme) => ({
alt: theme('colors.alt'),
'alt-hover': theme('colors.alt-hover'),
main: theme('colors.main'),
}),
stroke: (theme) => ({
alt: theme('colors.alt'),
'alt-hover': theme('colors.alt-hover'),
main: theme('colors.main'),
}),
},
plugins: [
require('@tailwindcss/forms')({
strategy: 'class',
}),
],
};