fixxxxxxxx

This commit is contained in:
2025-12-27 14:20:22 +02:00
parent 3612ada03a
commit 5bfdd7dd2b
26 changed files with 905 additions and 626 deletions

View File

@@ -1,7 +1,7 @@
import type { Config } from "tailwindcss";
export default {
darkMode: ["class"],
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
@@ -12,6 +12,19 @@ export default {
colors: {
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
base: "hsl(var(--ctp-base))",
mantle: "hsl(var(--ctp-mantle))",
crust: "hsl(var(--ctp-crust))",
text: "hsl(var(--ctp-text))",
subtext0: "hsl(var(--ctp-subtext0))",
subtext1: "hsl(var(--ctp-subtext1))",
surface0: "hsl(var(--ctp-surface0))",
surface1: "hsl(var(--ctp-surface1))",
surface2: "hsl(var(--ctp-surface2))",
blue: "hsl(var(--ctp-blue))",
green: "hsl(var(--ctp-green))",
yellow: "hsl(var(--ctp-yellow))",
red: "hsl(var(--ctp-red))",
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))"
@@ -60,10 +73,7 @@ export default {
"accent-foreground":
"hsl(var(--sidebar-accent-foreground))",
border: "hsl(var(--sidebar-border))",
ring: "hsl(var(--sidebar-ring))",
"primary-foreground":
"hsl(var(--sidebar-primary-foreground))",
"accent-foreground": "hsl(var(--sidebar-accent-foreground))"
ring: "hsl(var(--sidebar-ring))"
}
},
borderRadius: {
@@ -72,22 +82,6 @@ export default {
sm: "calc(var(--radius) - 4px)"
},
keyframes: {
"accordion-down": {
from: {
height: "0"
},
to: {
height: "var(--radix-accordion-content-height)"
}
},
"accordion-up": {
from: {
height: "var(--radix-accordion-content-height)"
},
to: {
height: "0"
}
},
"accordion-down": {
from: {
height: "0"
@@ -106,19 +100,12 @@ export default {
}
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out"
}
}
},
plugins: [
require("tailwindcss-animate"),
require("@tailwindcss/line-clamp"),
require("@catppuccin/tailwindcss")({
prefix: false,
defaultFlavour: "mocha"
})
require("tailwindcss-animate")
]
} satisfies Config;