Adds accounting-service PATCH/archive, fiscal helpers, COA templates and setup status, plus SuperApp Accounting UI (DS, scoreboard, masters, vouchers, ledger, ops modules) with session refresh and HTTPS public API URLs. Co-authored-by: Cursor <cursoragent@cursor.com>
59 lines
1.5 KiB
CSS
59 lines
1.5 KiB
CSS
@import url("/fonts/yekan-bakh/yekan-bakh.css");
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
/* Brand (white-label) */
|
|
--color-primary: #0284c7;
|
|
--color-secondary: #0f172a;
|
|
--color-primary-muted: rgba(2, 132, 199, 0.12);
|
|
--color-primary-soft: rgba(2, 132, 199, 0.08);
|
|
--color-secondary-muted: rgba(15, 23, 42, 0.06);
|
|
|
|
/* Design system surfaces */
|
|
--canvas: #f8fafc;
|
|
--surface: #ffffff;
|
|
--surface-muted: #f1f5f9;
|
|
--border: #e2e8f0;
|
|
--muted: #64748b;
|
|
--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
|
|
--shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
|
|
--shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
|
|
--radius-sm: 0.5rem;
|
|
--radius-md: 0.75rem;
|
|
--radius-lg: 1rem;
|
|
}
|
|
|
|
.dark {
|
|
--color-primary: #38bdf8;
|
|
--color-secondary: #f1f5f9;
|
|
--color-primary-muted: rgba(56, 189, 248, 0.16);
|
|
--color-primary-soft: rgba(56, 189, 248, 0.1);
|
|
--color-secondary-muted: rgba(241, 245, 249, 0.08);
|
|
|
|
--canvas: #0b1220;
|
|
--surface: #111827;
|
|
--surface-muted: #1e293b;
|
|
--border: #334155;
|
|
--muted: #94a3b8;
|
|
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
|
|
--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
|
|
--shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55);
|
|
}
|
|
|
|
body {
|
|
font-family: "Yekan Bakh FaNum", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
@apply bg-[var(--canvas)] text-secondary antialiased;
|
|
}
|
|
|
|
@layer utilities {
|
|
.line-clamp-2 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
}
|