vac.dev-experimental-old/tailwind.config.js

65 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-11-19 16:46:43 +00:00
module.exports = {
2021-08-10 09:46:08 +00:00
mode: 'jit',
2021-08-02 11:06:49 +00:00
purge: [`_site/**/*.html`, `_site/**/*.css`],
2019-05-15 22:16:02 +00:00
theme: {
2021-08-02 11:06:49 +00:00
extend: {
2021-08-23 11:11:03 +00:00
backgroundImage: theme => ({
2021-08-10 09:46:08 +00:00
arrow: 'url(/assets/img/arrow.svg)',
arrowWhite: 'url(/assets/img/arrow-white.svg)',
arrowPeach: 'url(/assets/img/arrow-peach.svg)',
2021-08-02 11:06:49 +00:00
}),
2021-08-09 11:18:52 +00:00
maxWidth: {
2021-08-23 11:11:03 +00:00
280: '280px',
436: '436px',
2021-08-10 09:46:08 +00:00
48: '48%',
80: '80%',
2021-08-09 11:18:52 +00:00
},
maxHeight: {
2021-08-23 11:11:03 +00:00
280: '280px',
436: '436px',
2021-08-10 09:46:08 +00:00
nav: '350px',
2021-08-09 11:18:52 +00:00
},
2021-08-02 11:06:49 +00:00
},
2021-07-29 17:02:18 +00:00
screens: {
2021-08-10 09:46:08 +00:00
xxs: '370px',
xscard: '436px',
xs: '450px',
xm: '480px',
sm: '570px',
sl: '680px',
md: '768px',
ml: '900px',
lg: '1024px',
l: '1199px',
lm: '1280px',
xl: '1440px',
2021-07-29 17:02:18 +00:00
},
fontFamily: {
2021-08-10 09:46:08 +00:00
sans: ['Open Sans', 'sans-serif'],
2021-07-29 17:02:18 +00:00
},
2021-08-02 11:06:49 +00:00
fontSize: {
2021-08-10 09:46:08 +00:00
xxs: ['10px', '22px'],
xs: ['12px', '16px'],
s: ['12px', '20px'],
sm: ['14px', '22px'],
base: ['14px', '24px'],
l: ['18px', '25px'],
lg: ['20px', '28px'],
xl: ['24px', '32px'],
xxl: ['32px', '44px'],
2021-08-02 11:06:49 +00:00
},
2021-08-02 11:46:51 +00:00
textColor: {
2021-08-10 09:46:08 +00:00
white: '#fff',
black: '#151512',
peach: '#D1A69D',
2021-08-02 11:46:51 +00:00
},
2021-07-29 17:02:18 +00:00
colors: {
2021-08-10 09:46:08 +00:00
white: '#fff',
black: '#151512',
peach: '#D1A69D',
2021-07-29 17:02:18 +00:00
},
2017-11-19 16:46:43 +00:00
},
2019-05-15 22:16:02 +00:00
variants: {},
2020-05-02 00:09:13 +00:00
plugins: [],
};