merakiui/tailwind.config.js

45 lines
1 KiB
JavaScript
Raw Normal View History

2021-09-19 20:34:01 +00:00
const colors = require("tailwindcss/colors");
2021-06-01 10:50:18 +00:00
2020-05-03 22:33:27 +00:00
module.exports = {
2021-02-15 07:39:16 +00:00
purge: [
2021-09-19 18:08:56 +00:00
"./components/**/*.{vue,js}",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
2021-02-15 07:39:16 +00:00
],
2021-09-19 18:08:56 +00:00
mode: "jit",
darkMode: "class",
2020-05-05 01:16:59 +00:00
theme: {
extend: {
2021-09-19 20:34:01 +00:00
keyframes: {
float: {
"0%, 100%": {
transform: "translatey(0px)",
},
"50%": {
transform: "translatey(-20px)",
},
},
},
animation: {
float: "float 4s ease-in-out infinite",
},
2021-06-01 10:50:18 +00:00
colors: {
teal: colors.teal,
},
2020-05-05 01:16:59 +00:00
fontFamily: {
2021-11-26 20:42:41 +00:00
roboto: ["Roboto", "sans-serif"],
2020-05-05 01:16:59 +00:00
},
spacing: {
2021-09-19 18:08:56 +00:00
104: "26rem",
2020-09-06 19:12:34 +00:00
128: "32rem",
2021-09-19 20:34:01 +00:00
164: "41rem",
2020-05-05 01:16:59 +00:00
},
},
2020-05-03 23:52:21 +00:00
},
variants: {
2021-02-07 15:59:43 +00:00
extend: {},
},
2020-05-05 01:16:59 +00:00
plugins: [],
2020-08-15 12:21:08 +00:00
};