Poe — Design System
Poe aggregates every model under Rileno Sans at 68px in near-black, SF Pro for the 17px chat-adjacent body, and violet #5D5CDE 35px-radius pills. Multi-model chat panels grid out the catalog — Quora's bot marketplace styled with app-store neutrality so a hundred AI brands can share one shelf.
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/poe.
Tokens
Poe's decoded design system: background #FFFFFF, text #0D0D0D, accent #D7DBF4, link #D7DBF4, primary #413FA9; type scale h1 36px / h2 20px / body 16px; 4px spacing base; 10px base radius. The single interactive/action color is #D7DBF4 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F0 |
| border | #DADADA |
| text | #0D0D0D |
| text_muted | #686868 |
| primary | #413FA9 |
| accent | #D7DBF4 |
| link | #D7DBF4 |
| secondary | #1A73E8 |
| button_bg | #D7DBF4 |
| button_text | #FFFFFF |
Using these colors
- Action color
#D7DBF4— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#D7DBF4— one role, not several (the action color).- accent
#D7DBF4— THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. - primary
#413FA9— a brand color — but the call-to-action uses #D7DBF4, not this. - secondary
#1A73E8— 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: Segoe UI
- Body: Segoe UI
- h1: 36px
- h2: 20px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 10px
- button: 9999px
Per-section tokens (2)
Export: DESIGN.md
# Poe — Design System > light, modern, medium, custom Poe aggregates every model under Rileno Sans at 68px in near-black, SF Pro for the 17px chat-adjacent body, and violet #5D5CDE 35px-radius pills. Multi-model chat panels grid out the catalog — Quora's bot marketplace styled with app-store neutrality so a hundred AI brands can share one shelf. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#DADADA` | | text | `#0D0D0D` | | text_muted | `#686868` | | primary | `#413FA9` | | accent | `#D7DBF4` | | link | `#D7DBF4` | | secondary | `#1A73E8` | | button_bg | `#D7DBF4` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#D7DBF4` — 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`, `button_bg` are all `#D7DBF4` — one role, not several (your action color). - **accent** `#D7DBF4` — THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. - **primary** `#413FA9` — a brand color — but the call-to-action uses #D7DBF4, not this. - **secondary** `#1A73E8` — 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: **Segoe UI** _(free fallback: Newsreader)_ - Body: **Segoe UI** _(free fallback: Newsreader)_ - h1: 36px - h2: 20px - body: 16px > **Fonts —** Segoe UI may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 10px - button: 9999px ## Primary button - bg `#D7DBF4` · text `#FFFFFF` · radius 9999px ## 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 #D7DBF4 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DADADA;
--color-text: #0D0D0D;
--color-text-muted: #686868;
--color-primary: #413FA9; /* a brand color — but the call-to-action uses #D7DBF4, not this. */
--color-accent: #D7DBF4; /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
--color-link: #D7DBF4; /* inline text links — shares the action color. */
--color-secondary: #1A73E8; /* 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: #D7DBF4; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Segoe UI may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Segoe UI", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Segoe UI", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 36px;
--text-h2: 20px;
--text-body: 16px;
--radius-base: 10px;
--radius-button: 9999px;
--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 #D7DBF4 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DADADA;
--text: #0D0D0D;
--text-muted: #686868;
--primary: #413FA9; /* a brand color — but the call-to-action uses #D7DBF4, not this. */
--accent: #D7DBF4; /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
--link: #D7DBF4; /* inline text links — shares the action color. */
--secondary: #1A73E8; /* 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: #D7DBF4; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Segoe UI", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Segoe UI", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 10px;
--radius-button: 9999px;
}
/* fonts: Segoe UI may be proprietary — safe free fallback: Newsreader (Google Fonts). */