Sunsama — Design System
Sunsama sells calm productivity in daylight tones: DM Sans at 48px/600 on pure white, a single warm orange #FF891C spent on 30px-radius pill CTAs, and softly shadowed planner screenshots that feel like a paper day-planner. Everything about the page performs the product's promise — unhurried, tidy, one day at a time.
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/sunsama.
Tokens
Sunsama's decoded design system: background #FFFFFF, text #202228, accent #FF891C, link #E8F9FF, primary #FF891C; type scale h1 48px / h2 40px / body 16px; 4px spacing base; 16px base radius. The single interactive/action color is #FF891C — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F1F1F2 |
| border | #DDDDDE |
| text | #202228 |
| text_muted | #747579 |
| primary | #FF891C |
| accent | #FF891C |
| link | #E8F9FF |
| secondary | #ECFFF2 |
| button_bg | #FF891C |
| button_text | #202228 |
Using these colors
- Action color
#FF891C— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#FF891C— one role, not several (the action color).- accent
#FF891C— 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
#E8F9FF— fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - secondary
#ECFFF2— 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: DM Sans
- Body: DM Sans
- h1: 48px
- h2: 40px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 16px
- button: 30px
Per-section tokens (17)
- Hero
- Hero
- Logo Wall
- Pricing / Plans
- Comparison
- Logo Wall
- Feature
- Testimonial / Social Proof
- Integrations
- Feature
- Bento Grid
- FAQ
- Comparison
- CTA / Sign-up
- Testimonial / Social Proof
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Sunsama — Design System > light, modern, medium, custom Sunsama sells calm productivity in daylight tones: DM Sans at 48px/600 on pure white, a single warm orange #FF891C spent on 30px-radius pill CTAs, and softly shadowed planner screenshots that feel like a paper day-planner. Everything about the page performs the product's promise — unhurried, tidy, one day at a time. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F1F1F2` | | border | `#DDDDDE` | | text | `#202228` | | text_muted | `#747579` | | primary | `#FF891C` | | accent | `#FF891C` | | link | `#E8F9FF` | | secondary | `#ECFFF2` | | button_bg | `#FF891C` | | button_text | `#202228` | **Using these colors** - **Action color** `#FF891C` — 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 `#FF891C` — one role, not several (your action color). - **accent** `#FF891C` — 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** `#E8F9FF` — fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - **secondary** `#ECFFF2` — 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: **DM Sans** - Body: **DM Sans** - h1: 48px - h2: 40px - body: 16px > **Fonts —** DM Sans — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 16px - button: 30px ## Primary button - bg `#FF891C` · text `#202228` · radius 30px ## 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 #FF891C — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F1F1F2;
--color-border: #DDDDDE;
--color-text: #202228;
--color-text-muted: #747579;
--color-primary: #FF891C; /* primary brand / action color. */
--color-accent: #FF891C; /* 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: #E8F9FF; /* fails contrast on the background (~1.1: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: #ECFFF2; /* 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: #FF891C; /* primary-button fill — the main call-to-action color. */
--color-button-text: #202228;
/* fonts: DM Sans — free, on Google. */
--font-heading: "DM Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "DM Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 48px;
--text-h2: 40px;
--text-body: 16px;
--radius-base: 16px;
--radius-button: 30px;
--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 #FF891C — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F1F1F2;
--border: #DDDDDE;
--text: #202228;
--text-muted: #747579;
--primary: #FF891C; /* primary brand / action color. */
--accent: #FF891C; /* 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: #E8F9FF; /* fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #ECFFF2; /* 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: #FF891C; /* primary-button fill — the main call-to-action color. */
--button-text: #202228;
--font-heading: "DM Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "DM Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 16px;
--radius-button: 30px;
}
/* fonts: DM Sans — free, on Google. */