mirror of
https://github.com/Xevion/xevion.dev.git
synced 2025-12-06 05:17:10 -06:00
21 lines
580 B
JavaScript
21 lines
580 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
zinc: {
|
|
850: "#1D1D20"
|
|
}
|
|
},
|
|
fontFamily: {
|
|
inter: ["\"Inter\"", "sans-serif"],
|
|
roboto: ["\"Roboto\"", "sans-serif"],
|
|
mono: ["\"Roboto Mono\"", "monospace"],
|
|
hanken: ["\"Hanken Grotesk\"", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
};
|