carservice: initial commit

This commit is contained in:
Hermes
2026-07-20 21:17:12 +01:00
commit d315323191
69 changed files with 9255 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/app/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
brand: {
50: "#fff7ed",
100: "#ffedd5",
200: "#fed7aa",
500: "#ea580c",
600: "#c2410c",
700: "#9a3412",
900: "#7c2d12",
},
steel: {
50: "#f8fafc",
100: "#f1f5f9",
200: "#e2e8f0",
300: "#cbd5e1",
400: "#94a3b8",
500: "#64748b",
600: "#475569",
700: "#334155",
800: "#1e293b",
900: "#0f172a",
},
warning: {
50: "#fefce8",
100: "#fef9c3",
500: "#eab308",
600: "#ca8a04",
},
},
},
},
plugins: [],
};