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

37 lines
640 B
JavaScript
Raw Normal View History

2017-11-19 16:46:43 +00:00
module.exports = {
2020-05-02 00:09:13 +00:00
purge: [`_site/**/*.html`],
2019-05-15 22:16:02 +00:00
theme: {
2020-05-02 00:09:13 +00:00
extend: {},
2021-07-29 17:02:18 +00:00
screens: {
2021-07-30 12:51:20 +00:00
xs: "450px",
2021-07-29 17:02:18 +00:00
sm: "570px",
"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"],
},
colors: {
white: "#fff",
black: "#151512",
grey: {
test: "#242424",
},
},
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: [],
};