-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
34 lines (33 loc) · 1.15 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
function infima(variable) {
return `var(${variable})`
}
module.exports = {
content: ['./src/**/*.html', './src/**/*.js', './src/**/*.tsx'],
theme: {
extend: {
fontFamily: {
VTEXTrust: ['VTEX Trust Regular', 'sans-serif'],
VTEXRegular: ['VTEX Trust Regular', 'sans-serif'],
VTEXMedium: ['VTEX Trust Medium', 'sans-serif'],
},
colors: {
background: infima('--ifm-background-color'),
whiteIce: infima('--ifm-color-white-ice'),
code: infima('--ifm-code-background'),
tag: infima('--ifm-tag-background'),
tagHighlight: infima('--ifm-tag-highlight'),
rebelPink: infima('--ifm-color-rebel-pink'),
seriousBlack: infima('--ifm-color-serious-black'),
secondary: infima('--ifm-color-secondary'),
fontSecondary: infima('--ifm-font-color-secondary'),
primary: infima('--ifm-color-primary'),
softPink: infima('--ifm-color-soft-pink'),
text: infima('--ifm-font-color-base'),
details: infima('--ifm-color-details'),
border: infima('--ifm-hr-border-color'),
brandlessBlue: '#00419e'
},
},
},
plugins: [],
}