Files
CapaKraken/apps/web/tailwind.config.ts
T
Hartmut 625a842d89 feat: dashboard overhaul, chargeability reports, dispo import enhancements, UI polish
Dashboard: expanded chargeability widget, resource/project table widgets
with sorting and filters, stat cards with formatMoney integration.

Chargeability: new report client with filtering, chargeability-bookings
use case, updated dashboard overview logic.

Dispo import: TBD project handling, parse-dispo-matrix improvements,
stage-dispo-projects resource value scores, new tests.

Estimates: CommercialTermsEditor component, commercial-terms engine
module, expanded estimate schemas and types.

UI: AppShell navigation updates, timeline filter/toolbar enhancements,
role management improvements, signin page redesign, Tailwind/globals
polish, SystemSettings SMTP section, anonymization support.

Tests: new router tests (anonymization, chargeability, effort-rule,
entitlement, estimate, experience-multiplier, notification, resource,
staffing, vacation).

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-03-14 23:29:07 +01:00

33 lines
1.0 KiB
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
darkMode: "class",
theme: {
extend: {
colors: {
brand: {
50: "rgb(var(--accent-50) / <alpha-value>)",
100: "rgb(var(--accent-100) / <alpha-value>)",
200: "rgb(var(--accent-200) / <alpha-value>)",
300: "rgb(var(--accent-300) / <alpha-value>)",
400: "rgb(var(--accent-400) / <alpha-value>)",
500: "rgb(var(--accent-500) / <alpha-value>)",
600: "rgb(var(--accent-600) / <alpha-value>)",
700: "rgb(var(--accent-700) / <alpha-value>)",
800: "rgb(var(--accent-800) / <alpha-value>)",
900: "rgb(var(--accent-900) / <alpha-value>)",
},
},
fontFamily: {
sans: ["var(--font-ui)", "system-ui", "sans-serif"],
display: ["var(--font-display)", "system-ui", "sans-serif"],
mono: ["JetBrains Mono", "monospace"],
},
},
},
plugins: [],
};
export default config;