werefox-cafe/src/info/tailwind.config.js

50 lines
1.1 KiB
JavaScript

module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: "media", // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
nerd: ["DejaVuSansMono"],
},
colors: {
"werefox-blue": {
DEFAULT: "#75B1FF",
dark: "#0052B8",
darker: "#0052B8",
darkest: "#0052B8",
},
"werefox-pink": {
DEFAULT: "#FF84CA",
dark: "#9E0054",
darker: "#8A0040",
darkest: "#75003F",
},
"werefox-grey": {
lightest: "#EEE",
lighter: "#DBDBDB",
light: "#CCC",
DEFAULT: "#424242",
dark: "#242424",
darker: "#121212",
},
},
flex: {
5: "5 5 0%",
},
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-1deg)" },
"50%": { transform: "rotate(1deg)" },
},
},
animation: {
wiggle: "wiggle 7s ease-in-out infinite",
},
},
},
variants: {
extend: {},
},
plugins: [],
};