Krea — Design System
Krea renders realtime AI in Suisse Intl at 60-72px white on black, 14px dense working text, and white full-pill CTAs. Generation canvases and model comparisons fill the dark stage — a creative-AI studio letting Swiss neutrality frame the one thing that moves: the image being born on screen.
This is a static, crawlable rendering for search & AI engines. The interactive version — filters, live decode console, copy & export — is at https://mozaika.design/ds/krea.
Tokens
Krea's decoded design system: background #101010, text #ECECEE, accent #4285F4, link #4285F4, primary #1A73E8; type scale h1 72px / h2 18px / body 14px; 4px spacing base; 8px base radius. The single interactive/action color is #FFFFFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #101010 |
| surface | #1D1D1D |
| border | #313131 |
| text | #ECECEE |
| text_muted | #989899 |
| primary | #1A73E8 |
| accent | #4285F4 |
| link | #4285F4 |
| secondary | #D2E3FC |
| button_bg | #FFFFFF |
| button_text | #000000 |
Using these colors
- Action color
#FFFFFF— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#4285F4— one role, not several (the action color).- accent
#4285F4— accent for emphasis — keep it rare on the page. - primary
#1A73E8— a brand color — but the call-to-action uses #FFFFFF, not this. - secondary
#D2E3FC— optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two.
Typography
- Heading: Suisse Intl
- Body: Suisse Intl
- h1: 72px
- h2: 18px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 8px
Per-section tokens (1)
Export: DESIGN.md
# Krea — Design System > dark, modern, high, tailwind Krea renders realtime AI in Suisse Intl at 60-72px white on black, 14px dense working text, and white full-pill CTAs. Generation canvases and model comparisons fill the dark stage — a creative-AI studio letting Swiss neutrality frame the one thing that moves: the image being born on screen. ## Colors | Role | Value | |------|-------| | bg | `#101010` | | surface | `#1D1D1D` | | border | `#313131` | | text | `#ECECEE` | | text_muted | `#989899` | | primary | `#1A73E8` | | accent | `#4285F4` | | link | `#4285F4` | | secondary | `#D2E3FC` | | button_bg | `#FFFFFF` | | button_text | `#000000` | **Using these colors** - **Action color** `#FFFFFF` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `link` are all `#4285F4` — one role, not several. - **accent** `#4285F4` — accent for emphasis — keep it rare on the page. - **primary** `#1A73E8` — a brand color — but the call-to-action uses #FFFFFF, not this. - **secondary** `#D2E3FC` — optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. ## Typography - Heading: **Suisse Intl** _(free fallback: Newsreader)_ - Body: **Suisse Intl** _(free fallback: Newsreader)_ - h1: 72px - h2: 18px - body: 14px > **Fonts —** Suisse Intl may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 8px ## Primary button - bg `#FFFFFF` · text `#000000` · radius 8px ## How to apply Paste the Tailwind `@theme` (or CSS variables) as your base, then build each section to its spec — verify every color, radius, and font against these tokens.
Export: Tailwind v4 (@theme)
@theme {
/* action color #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #101010;
--color-surface: #1D1D1D;
--color-border: #313131;
--color-text: #ECECEE;
--color-text-muted: #989899;
--color-primary: #1A73E8; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--color-accent: #4285F4; /* accent for emphasis — keep it rare on the page. */
--color-link: #4285F4; /* inline text links and link-styled controls. */
--color-secondary: #D2E3FC; /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
--color-button-bg: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #000000;
/* fonts: Suisse Intl may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Suisse Intl", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Suisse Intl", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 72px;
--text-h2: 18px;
--text-body: 14px;
--radius-base: 8px;
--radius-button: 8px;
--spacing-1: 2px;
--spacing-2: 4px;
--spacing-3: 6px;
--spacing-4: 8px;
--spacing-5: 12px;
--spacing-6: 16px;
--spacing-7: 24px;
--spacing-8: 32px;
}Export: CSS variables
:root {
/* action color #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #101010;
--surface: #1D1D1D;
--border: #313131;
--text: #ECECEE;
--text-muted: #989899;
--primary: #1A73E8; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--accent: #4285F4; /* accent for emphasis — keep it rare on the page. */
--link: #4285F4; /* inline text links and link-styled controls. */
--secondary: #D2E3FC; /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
--button-bg: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--button-text: #000000;
--font-heading: "Suisse Intl", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Suisse Intl", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 8px;
}
/* fonts: Suisse Intl may be proprietary — safe free fallback: Newsreader (Google Fonts). */