mirror of
https://github.com/logos-storage/metrics.git
synced 2026-01-02 05:23:07 +00:00
20 lines
362 B
JavaScript
20 lines
362 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Inter", "sans-serif"],
|
|
},
|
|
colors: {
|
|
accent: "#7afbaf",
|
|
},
|
|
}
|
|
},
|
|
plugins: [],
|
|
};
|