managarten/services-archived/it-landing/src/styles/global.css
Till JS e11aa50106 chore: remove unused Supabase auth store, archive stub services
- 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>
2026-04-02 13:59:53 +02:00

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;
}