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

61 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-11-19 10:46:43 -06:00
module.exports = {
2021-08-02 13:06:49 +02:00
purge: [`_site/**/*.html`, `_site/**/*.css`],
2019-05-15 17:16:02 -05:00
theme: {
2021-08-02 13:06:49 +02:00
extend: {
backgroundImage: (theme) => ({
arrow: "url(/assets/img/arrow.svg)",
2021-08-02 13:46:51 +02:00
arrowWhite: "url(/assets/img/arrow-white.svg)",
2021-08-02 13:06:49 +02:00
}),
},
2021-07-29 19:02:18 +02:00
screens: {
2021-08-02 13:06:49 +02:00
xxs: "370px",
2021-08-02 17:53:36 +02:00
xscard: "436px",
2021-07-30 14:51:20 +02:00
xs: "450px",
2021-08-02 13:06:49 +02:00
xm: "480px",
2021-07-29 19:02:18 +02:00
sm: "570px",
2021-08-02 13:06:49 +02:00
sl: "680px",
2021-07-29 19:02:18 +02:00
md: "768px",
2021-08-03 14:11:00 +02:00
ml: "900px",
2021-07-29 19:02:18 +02:00
lg: "1024px",
l: "1199px",
2021-08-02 17:53:36 +02:00
lm: "1280px",
2021-07-29 19:02:18 +02:00
xl: "1440px",
},
maxHeight: {
0: "0",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
nav: "350px",
full: "100%",
},
2021-08-03 14:11:00 +02:00
2021-07-29 19:02:18 +02:00
fontFamily: {
sans: ["Open Sans", "sans-serif"],
},
2021-08-02 13:06:49 +02:00
fontSize: {
2021-08-02 18:50:16 +02:00
xxs: ["10px", "22px"],
2021-08-02 13:06:49 +02:00
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 13:46:51 +02:00
textColor: {
white: "#fff",
black: "#151512",
peach: "#D1A69D",
},
2021-07-29 19:02:18 +02:00
colors: {
white: "#fff",
black: "#151512",
2021-08-02 13:46:51 +02:00
peach: "#D1A69D",
2021-07-29 19:02:18 +02:00
},
2017-11-19 10:46:43 -06:00
},
2019-05-15 17:16:02 -05:00
variants: {},
2020-05-01 19:09:13 -05:00
plugins: [],
};