Files
xevion.dev/tailwind.config.cjs

23 lines
679 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
zinc: {
850: "#1D1D20"
}
},
fontFamily: {
manrope: ["\"Manrope\"", "sans-serif"],
opensans: ["\"Open Sans\"", "sans-serif"],
inter: ["\"Inter\"", "sans-serif"],
mono: ["\"Roboto Mono\"", "monospace"],
raleway: ["\"Raleway\"", "sans-serif"],
roboto: ["\"Roboto\""],
},
},
},
plugins: [require('@tailwindcss/typography')],
};