add a lot of thing (too late to understand tbh)

This commit is contained in:
lnino
2025-02-01 03:43:37 +01:00
parent f4a9e9d2fe
commit b16eb4c0b5
18 changed files with 230 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [],
} satisfies Config;