metrics/tailwind.config.mjs

20 lines
362 B
JavaScript
Raw Normal View History

2024-12-17 21:09:49 +00:00
/** @type {import('tailwindcss').Config} */
export default {
2025-01-09 22:12:24 +00:00
content: [
2024-12-17 21:09:49 +00:00
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
2025-01-09 22:12:24 +00:00
extend: {
fontFamily: {
sans: ["Inter", "sans-serif"],
},
colors: {
accent: "#7afbaf",
},
}
2024-12-17 21:09:49 +00:00
},
plugins: [],
};