mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 01:46:41 +02:00
- shared-auth-stores: delete createSupabaseAuthStore (zero usage across monorepo, all apps use createManaAuthStore). Remove export + types from index.ts. - services: move ollama-metrics-proxy (stub — just a Grafana dashboard JSON) and it-landing (Astro landing page, not a service) to services-archived/ - lint-staged: add services-archived/ to eslint ignore pattern Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
522 B
CSS
25 lines
522 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
/* EU Sovereign Theme — Light Mode */
|
|
--color-primary: #003399;
|
|
--color-primary-hover: #002266;
|
|
--color-primary-glow: rgba(0, 51, 153, 0.15);
|
|
|
|
--color-text-primary: #1a1a2e;
|
|
--color-text-secondary: #4a4a6a;
|
|
--color-text-muted: #8888a0;
|
|
|
|
--color-background-page: #f8f9fc;
|
|
--color-background-card: #ffffff;
|
|
--color-background-card-hover: #f0f2f8;
|
|
|
|
--color-border: #e2e4ec;
|
|
--color-border-hover: #c8ccd8;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|