Amie — Design System
Amie proves Inter can be joyful: 56px/700 headlines on soft #FAFAFA, sky-blue #11A8FF buttons at 8px radius, and calendar UI rendered with candy-bright event colors and rounded avatars. The type system stays deliberately plain so the product's playfulness — spinning icons, emoji, autopilot to-dos — reads as personality rather than noise; a productivity app that smiles.
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/amie.
Tokens
Amie's decoded design system: background #FAFAFA, text #000000, accent #11A8FF, link #5890E7, primary #11A8FF; type scale h1 56px / h2 20px / body 16px; 4px spacing base; 6px base radius. The single interactive/action color is #11A8FF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FAFAFA |
| surface | #EBEBEB |
| border | #D4D4D4 |
| text | #000000 |
| text_muted | #5F5F5F |
| primary | #11A8FF |
| accent | #11A8FF |
| link | #5890E7 |
| secondary | #FCF0AF |
| button_bg | #11A8FF |
| button_text | #FFFFFF |
Using these colors
- Action color
#11A8FF— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#11A8FF— one role, not several (the action color).- accent
#11A8FF— 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
#5890E7— inline text links and link-styled controls. - secondary
#FCF0AF— 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: 56px
- h2: 20px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 6px
- button: 12px
Per-section tokens (13)
- Hero
- Logo Wall
- CTA / Sign-up
- Feature
- Feature
- Comparison
- Feature
- Feature
- Integrations
- Feature
- CTA / Sign-up
- FAQ
- Footer
Export: DESIGN.md
# Amie — Design System > light, modern, medium, tailwind Amie proves Inter can be joyful: 56px/700 headlines on soft #FAFAFA, sky-blue #11A8FF buttons at 8px radius, and calendar UI rendered with candy-bright event colors and rounded avatars. The type system stays deliberately plain so the product's playfulness — spinning icons, emoji, autopilot to-dos — reads as personality rather than noise; a productivity app that smiles. ## Colors | Role | Value | |------|-------| | bg | `#FAFAFA` | | surface | `#EBEBEB` | | border | `#D4D4D4` | | text | `#000000` | | text_muted | `#5F5F5F` | | primary | `#11A8FF` | | accent | `#11A8FF` | | link | `#5890E7` | | secondary | `#FCF0AF` | | button_bg | `#11A8FF` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#11A8FF` — 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 `#11A8FF` — one role, not several (your action color). - **accent** `#11A8FF` — 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** `#5890E7` — inline text links and link-styled controls. - **secondary** `#FCF0AF` — 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: 56px - h2: 20px - body: 16px > **Fonts —** Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 6px - button: 12px ## Primary button - bg `#11A8FF` · text `#FFFFFF` · radius 12px ## 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 #11A8FF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FAFAFA;
--color-surface: #EBEBEB;
--color-border: #D4D4D4;
--color-text: #000000;
--color-text-muted: #5F5F5F;
--color-primary: #11A8FF; /* primary brand / action color. */
--color-accent: #11A8FF; /* 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: #5890E7; /* inline text links and link-styled controls. */
--color-secondary: #FCF0AF; /* 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: #11A8FF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* 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: 56px;
--text-h2: 20px;
--text-body: 16px;
--radius-base: 6px;
--radius-button: 12px;
--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 #11A8FF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FAFAFA;
--surface: #EBEBEB;
--border: #D4D4D4;
--text: #000000;
--text-muted: #5F5F5F;
--primary: #11A8FF; /* primary brand / action color. */
--accent: #11A8FF; /* 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: #5890E7; /* inline text links and link-styled controls. */
--secondary: #FCF0AF; /* 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: #11A8FF; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 6px;
--radius-button: 12px;
}
/* fonts: Inter — free, on Google. */