Gothic Templates — Design System
A cohesive open-source template design system — editorial dark theme with Fustat headings.
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/gothic-templates.
Tokens
Gothic Templates's decoded design system: background #101314, text #E8F1F6, accent #E8F1F6, link #E8F1F6, primary #E8F1F6; type scale h1 31px / h2 25px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #E8F1F6 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #101314 |
| surface | #1C2021 |
| border | #303435 |
| text | #E8F1F6 |
| text_muted | #959CA0 |
| primary | #E8F1F6 |
| accent | #E8F1F6 |
| link | #E8F1F6 |
| secondary | #101314 |
| button_bg | #E8F1F6 |
| button_text | #0A0A0A |
Using these colors
- Action color
#E8F1F6— the single interactive color; only on things you click or must notice, never large fills. primary,accent,link,button_bgare all#E8F1F6— one role, not several (the action color).- accent
#E8F1F6— 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. - secondary
#101314— 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: Fustat
- Body: Fustat
- h1: 31px
- h2: 25px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 8px
Motion
Micro-interactions run at 150ms (dominant).
- durations: 150ms · 350ms
Per-section tokens (3)
Export: DESIGN.md
# Gothic Templates — Design System > dark, editorial, dramatic, react A cohesive open-source template design system — editorial dark theme with Fustat headings. ## Colors | Role | Value | |------|-------| | bg | `#101314` | | surface | `#1C2021` | | border | `#303435` | | text | `#E8F1F6` | | text_muted | `#959CA0` | | primary | `#E8F1F6` | | accent | `#E8F1F6` | | link | `#E8F1F6` | | secondary | `#101314` | | button_bg | `#E8F1F6` | | button_text | `#0A0A0A` | **Using these colors** - **Action color** `#E8F1F6` — 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`, `link`, `button_bg` are all `#E8F1F6` — one role, not several (your action color). - **accent** `#E8F1F6` — 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. - **secondary** `#101314` — 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: **Fustat** _(free fallback: Newsreader)_ - Body: **Fustat** _(free fallback: Newsreader)_ - h1: 31px - h2: 25px - body: 16px > **Fonts —** Fustat 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 `#E8F1F6` · text `#0A0A0A` · radius 8px ## Motion - durations: 150ms (dominant) · 350ms Micro-interactions use the dominant duration + easing; nothing on the page animates slower than the longest duration above — don't invent springier motion. ## 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. --- > **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/gothic-templates
Export: Tailwind v4 (@theme)
@theme {
/* action color #E8F1F6 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #101314;
--color-surface: #1C2021;
--color-border: #303435;
--color-text: #E8F1F6;
--color-text-muted: #959CA0;
--color-primary: #E8F1F6; /* ≈ the text color — a foreground/text color, not an action color (action = #E8F1F6). */
--color-accent: #E8F1F6; /* 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: #E8F1F6; /* inline text links — shares the action color. */
--color-secondary: #101314; /* 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: #E8F1F6; /* primary-button fill — the main call-to-action color. */
--color-button-text: #0A0A0A;
/* fonts: Fustat may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Fustat", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Fustat", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 31px;
--text-h2: 25px;
--text-body: 16px;
--radius-base: 8px;
--radius-button: 8px;
--duration-fast: 150ms; /* use: duration-[var(--duration-fast)] */
--duration-base: 350ms;
--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 #E8F1F6 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #101314;
--surface: #1C2021;
--border: #303435;
--text: #E8F1F6;
--text-muted: #959CA0;
--primary: #E8F1F6; /* ≈ the text color — a foreground/text color, not an action color (action = #E8F1F6). */
--accent: #E8F1F6; /* 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: #E8F1F6; /* inline text links — shares the action color. */
--secondary: #101314; /* 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: #E8F1F6; /* primary-button fill — the main call-to-action color. */
--button-text: #0A0A0A;
--font-heading: "Fustat", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Fustat", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 8px;
--duration-fast: 150ms;
--duration-base: 350ms;
}
/* fonts: Fustat may be proprietary — safe free fallback: Newsreader (Google Fonts). */