Files
xevion.dev/tailwind.config.cjs
2022-12-21 14:54:13 -06:00

18 lines
461 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
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: [],
};