Hasura — Design System
Hasura (now PromptQL-era) keeps GraphQL infrastructure in Archivo at 40px/500 with Inter at 14-24px, zero-radius text CTAs, and schematic diagrams in its signature blue-green. The page reads like well-organized API docs — data access tooling that trusts architecture diagrams over adjectives.
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/hasura.
Tokens
Hasura's decoded design system: background #FFFFFF, text #121212, accent #1863DC, link #ACB7D4, primary #1863DC; type scale h1 40px / h2 40px / body 18px; 4px spacing base; 8px base radius. The single interactive/action color is #1863DC — 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 | #DBDBDB |
| text | #121212 |
| text_muted | #6C6C6C |
| primary | #1863DC |
| accent | #1863DC |
| link | #ACB7D4 |
| secondary | #000615 |
| button_bg | #1863DC |
| button_text | #F4F4F4 |
Using these colors
- Action color
#1863DC— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#1863DC— one role, not several (the action color).- accent
#1863DC— 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
#ACB7D4— fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - secondary
#000615— 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: Inter
- Body: Inter
- h1: 40px
- h2: 40px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 2px
Per-section tokens (2)
Export: DESIGN.md
# Hasura — Design System > light, modern, medium, tailwind Hasura (now PromptQL-era) keeps GraphQL infrastructure in Archivo at 40px/500 with Inter at 14-24px, zero-radius text CTAs, and schematic diagrams in its signature blue-green. The page reads like well-organized API docs — data access tooling that trusts architecture diagrams over adjectives. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#DBDBDB` | | text | `#121212` | | text_muted | `#6C6C6C` | | primary | `#1863DC` | | accent | `#1863DC` | | link | `#ACB7D4` | | secondary | `#000615` | | button_bg | `#1863DC` | | button_text | `#F4F4F4` | **Using these colors** - **Action color** `#1863DC` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary`, `accent`, `button_bg` are all `#1863DC` — one role, not several (your action color). - **accent** `#1863DC` — 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** `#ACB7D4` — fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - **secondary** `#000615` — 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: **Inter** - Body: **Inter** - h1: 40px - h2: 40px - body: 18px > **Fonts —** Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 2px ## Primary button - bg `#1863DC` · text `#F4F4F4` · radius 2px ## 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 #1863DC — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DBDBDB;
--color-text: #121212;
--color-text-muted: #6C6C6C;
--color-primary: #1863DC; /* primary brand / action color. */
--color-accent: #1863DC; /* 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: #ACB7D4; /* fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--color-secondary: #000615; /* 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: #1863DC; /* primary-button fill — the main call-to-action color. */
--color-button-text: #F4F4F4;
/* fonts: Inter — free, on Google. */
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 40px;
--text-h2: 40px;
--text-body: 18px;
--radius-base: 8px;
--radius-button: 2px;
--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 #1863DC — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DBDBDB;
--text: #121212;
--text-muted: #6C6C6C;
--primary: #1863DC; /* primary brand / action color. */
--accent: #1863DC; /* 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: #ACB7D4; /* fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #000615; /* 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: #1863DC; /* primary-button fill — the main call-to-action color. */
--button-text: #F4F4F4;
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 2px;
}
/* fonts: Inter — free, on Google. */