diff --git a/assets/styles/app.css b/assets/styles/app.css index e72e822..a7f15ef 100644 --- a/assets/styles/app.css +++ b/assets/styles/app.css @@ -2,53 +2,6 @@ @tailwind components; @tailwind utilities; -@layer base { - :root { - --background: 0 0% 100%; - --foreground: 222.2 84% 4.9%; - - --primary: 222.2 47.4% 11.2%; - --primary-foreground: 210 40% 98%; - - --secondary: 210 40% 96.1%; - --secondary-foreground: 222.2 47.4% 11.2%; - - --muted: 210 40% 96.1%; - --muted-foreground: 215.4 16.3% 46.9%; - - --accent: 210 40% 96.1%; - --accent-foreground: 222.2 47.4% 11.2%; - - --destructive: 0 84.2% 60.2%; - --destructive-foreground: 210 40% 98%; - --border: 214.3 31.8% 91.4%; - - --radius: 0.6rem; - } - - .dark { - --background: 222.2 84% 4.9%; - --foreground: 210 40% 98%; - - --primary: 210 40% 98%; - --primary-foreground: 222.2 47.4% 11.2%; - - --secondary: 217.2 32.6% 17.5%; - --secondary-foreground: 210 40% 98%; - - --muted: 217.2 32.6% 17.5%; - --muted-foreground: 215 20.2% 65.1%; - - --accent: 217.2 32.6% 17.5%; - --accent-foreground: 210 40% 98%; - - --destructive: 0 62.8% 30.6%; - --destructive-foreground: 210 40% 98%; - - --border: 214.3 31.8% 91.4%; - } -} - @layer base { * { @apply border-border; diff --git a/tailwind.config.js b/tailwind.config.js index ce51d31..6cd8b03 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -15,36 +15,36 @@ module.exports = { }, extend: { colors: { - border: "hsl(var(--border))", - background: "hsl(var(--background))", - foreground: "hsl(var(--foreground))", + border: "#e2e8f0", + background: "#ffffff", + foreground: "#020817", primary: { - DEFAULT: "hsl(var(--primary))", - foreground: "hsl(var(--primary-foreground))", + DEFAULT: "#0f172a", + foreground: "#f8fafc", }, secondary: { - DEFAULT: "hsl(var(--secondary))", - foreground: "hsl(var(--secondary-foreground))", + DEFAULT: "#f1f5f9", + foreground: "#0f172a", }, destructive: { - DEFAULT: "hsl(var(--destructive))", - foreground: "hsl(var(--destructive-foreground))", + DEFAULT: "#ef4444", + foreground: "#f8fafc", }, muted: { - DEFAULT: "hsl(var(--muted))", - foreground: "hsl(var(--muted-foreground))", + DEFAULT: "#f1f5f9", + foreground: "#64748b", }, accent: { - DEFAULT: "hsl(var(--accent))", - foreground: "hsl(var(--accent-foreground))", + DEFAULT: "#f1f5f9", + foreground: "#0f172a", }, }, borderRadius: { - lg: "var(--radius)", - md: "calc(var(--radius) - 2px)", - sm: "calc(var(--radius) - 4px)", + lg: "0.6rem", + md: "0.4rem", + sm: "0.2rem", }, }, }, - plugins: [require('@tailwindcss/typography')], + plugins: [], }