2021-04-17 21:38:19 -05:00
|
|
|
module.exports = {
|
|
|
|
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
|
2021-04-18 14:30:19 -05:00
|
|
|
darkMode: "media", // or 'media' or 'class'
|
2021-04-17 21:38:19 -05:00
|
|
|
theme: {
|
|
|
|
extend: {
|
2021-04-18 14:30:19 -05:00
|
|
|
fontFamily: {
|
|
|
|
nerd: ["DejaVuSansMono"],
|
|
|
|
},
|
2021-04-17 21:38:19 -05:00
|
|
|
colors: {
|
2021-04-18 14:30:19 -05:00
|
|
|
"werefox-blue": {
|
|
|
|
DEFAULT: "#60A4FF",
|
|
|
|
dark: "#2885ff",
|
|
|
|
},
|
|
|
|
"werefox-pink": {
|
|
|
|
DEFAULT: "#ff84c5",
|
|
|
|
dark: "#ff329f",
|
|
|
|
},
|
2021-04-17 21:38:19 -05:00
|
|
|
"werefox-grey": {
|
2021-04-18 18:27:30 -05:00
|
|
|
lightest: "#EEE",
|
|
|
|
lighter: "#DBDBDB",
|
|
|
|
light: "#CCC",
|
2021-04-17 21:38:19 -05:00
|
|
|
DEFAULT: "#424242",
|
|
|
|
dark: "#242424",
|
2021-04-18 18:27:30 -05:00
|
|
|
darker: "#121212",
|
2021-04-17 21:38:19 -05:00
|
|
|
},
|
|
|
|
},
|
2021-04-18 23:14:21 -05:00
|
|
|
flex: {
|
|
|
|
5: "5 5 0%",
|
|
|
|
},
|
|
|
|
keyframes: {
|
|
|
|
wiggle: {
|
|
|
|
"0%, 100%": { transform: "rotate(-2deg)" },
|
|
|
|
"50%": { transform: "rotate(2deg)" },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
wiggle: "wiggle 5s ease-in-out infinite",
|
|
|
|
},
|
2021-04-17 21:38:19 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|