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

59 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-11-19 16:46:43 +00:00
module.exports = {
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: {
backgroundImage: (theme) => ({
arrow: "url(/assets/img/arrow.svg)",
2021-08-02 11:46:51 +00:00
arrowWhite: "url(/assets/img/arrow-white.svg)",
2021-08-02 11:06:49 +00:00
}),
},
2021-07-29 17:02:18 +00:00
screens: {
2021-08-02 11:06:49 +00:00
xxs: "370px",
2021-07-30 12:51:20 +00:00
xs: "450px",
2021-08-02 11:06:49 +00:00
xm: "480px",
2021-07-29 17:02:18 +00:00
sm: "570px",
2021-07-30 15:04:09 +00:00
s: { max: "570px" },
2021-08-02 11:06:49 +00:00
sl: "680px",
2021-07-29 17:02:18 +00:00
"md-max": { max: "768px" },
md: "768px",
"lg-max": { max: "1024px" },
lg: "1024px",
l: "1199px",
xl: "1440px",
},
maxHeight: {
0: "0",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
nav: "350px",
full: "100%",
},
fontFamily: {
sans: ["Open Sans", "sans-serif"],
},
2021-08-02 11:06:49 +00:00
fontSize: {
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:46:51 +00:00
textColor: {
white: "#fff",
black: "#151512",
peach: "#D1A69D",
},
2021-07-29 17:02:18 +00:00
colors: {
white: "#fff",
black: "#151512",
2021-08-02 11:46:51 +00:00
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: [],
};