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

46 lines
998 B
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: "#60A4FF",
dark: "#2885ff",
},
"werefox-pink": {
DEFAULT: "#ff84c5",
dark: "#ff329f",
},
"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(-2deg)" },
"50%": { transform: "rotate(2deg)" },
},
},
animation: {
wiggle: "wiggle 5s ease-in-out infinite",
},
},
},
variants: {
extend: {},
},
plugins: [],
};