Some checks failed
Main Confidence / confidence (push) Failing after 42s
## Summary - establish the initial Astro website foundation for `apps/website` with explicit TypeScript, Tailwind CSS v4, and reusable layout/content primitives - ship the v0 public route set for home, product, solutions, security & trust, integrations, contact, legal, privacy, and terms - add SEO/discovery basics, Playwright browser smoke coverage, and the full Spec 213 planning bundle under `specs/213-website-foundation-v0` - extend ignore rules for website test artifacts and refresh Copilot agent context for the new website stack ## Validation - `corepack pnpm build:website` - `cd apps/website && corepack pnpm exec playwright test` ## Notes - branch: `213-website-foundation-v0` - commit: `020d416d0d8af4d16a981ff4f4f6d90153b9c603` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #249
20 lines
778 B
CSS
20 lines
778 B
CSS
@theme {
|
|
--font-sans: "Avenir Next", "Segoe UI", sans-serif;
|
|
--font-display: "Iowan Old Style", "Palatino Linotype", serif;
|
|
--font-mono: "IBM Plex Mono", "SFMono-Regular", monospace;
|
|
|
|
--color-shell-50: oklch(0.985 0.01 86);
|
|
--color-shell-100: oklch(0.97 0.015 85);
|
|
--color-shell-200: oklch(0.935 0.025 84);
|
|
--color-shell-300: oklch(0.88 0.04 78);
|
|
--color-shell-900: oklch(0.19 0.03 65);
|
|
--color-shell-950: oklch(0.14 0.025 62);
|
|
--color-brand-400: oklch(0.76 0.09 210);
|
|
--color-brand-500: oklch(0.68 0.11 218);
|
|
--color-brand-700: oklch(0.49 0.11 228);
|
|
--color-signal-400: oklch(0.78 0.1 162);
|
|
--color-signal-700: oklch(0.52 0.08 170);
|
|
--color-warm-300: oklch(0.87 0.05 53);
|
|
--color-warm-500: oklch(0.69 0.09 48);
|
|
}
|