Getir Mobile — Design System
Getir Mobile — palette measured from official store listing screenshots (colors only; no font claims). Type scale shown is the platform HIG default.
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/getir-mobile.
Tokens
Getir Mobile's decoded design system: background #FFFFFF, text #241668, accent #5D3EBC, link #5D3EBC, primary #5D3EBC; type scale h1 34px / h2 22px / body 17px; 8px spacing base; 12px base radius. The single interactive/action color is #5D3EBC — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F1F1F5 |
| border | #DEDCE8 |
| text | #241668 |
| text_muted | #776EA1 |
| primary | #5D3EBC |
| accent | #5D3EBC |
| link | #5D3EBC |
| button_bg | #5D3EBC |
| button_text | #FFFFFF |
Using these colors
- Action color
#5D3EBC— the single interactive color; only on things you click or must notice, never large fills. primary,accent,link,button_bgare all#5D3EBC— one role, not several (the action color).- accent
#5D3EBC— 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.
Typography
- h1: 34px
- h2: 22px
- body: 17px
Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px
Radii
- base: 12px
- button: 12px
Button states (measured)
- primary hover: border
1px solid rgb(236, 114, 16)· background#EC7210 - primary focus: outline
3px solid rgb(9, 114, 211)
Responsive (measured)
- mobile (390px): hero 32px · nav inline
Export: DESIGN.md
# Getir Mobile — Design System > light, consumer, high — deep decode (measured live) Getir Mobile — palette measured from official store listing screenshots (colors only; no font claims). Type scale shown is the platform HIG default. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F1F1F5` | | border | `#DEDCE8` | | text | `#241668` | | text_muted | `#776EA1` | | primary | `#5D3EBC` | | accent | `#5D3EBC` | | link | `#5D3EBC` | | button_bg | `#5D3EBC` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#5D3EBC` — 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 `#5D3EBC` — one role, not several (your action color). - **accent** `#5D3EBC` — 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. - **Page coverage** (full-page screenshot pixels): `#FFFFFF` 98.3% · `#C9CACB` 0.5% · `#F2EDE8` 0.4% · `#E4921B` 0.3% ## Typography - h1: 34px - h2: 22px - body: 17px ## Spacing - base unit: 8px - scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px ## Radius - base: 12px - button: 12px ## Buttons | Button | Fill / text | Border | Radius | Padding | Font | Shadow | |--------|-------------|--------|--------|---------|------|--------| | primary | `#FF9902` / `#000000` | 1px solid rgb(255, 153, 2) | 2px | 5px 30px 5px 30px | 700 16px | none | **States (measured, not guessed)** - primary hover: border `1px solid rgb(236, 114, 16)` · background `#EC7210` - primary focus: outline `3px solid rgb(9, 114, 211)` ## Responsive (measured) - mobile (390px): hero 32px · body 16px · nav: inline ## 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. Hover/focus states, shadows and motion timings above are measured from the live page — match them exactly, don't re-guess them. --- > **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/getir-mobile
Export: Tailwind v4 (@theme)
@theme {
/* action color #5D3EBC — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F1F1F5;
--color-border: #DEDCE8;
--color-text: #241668;
--color-text-muted: #776EA1;
--color-primary: #5D3EBC; /* primary brand / action color. */
--color-accent: #5D3EBC; /* 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: #5D3EBC; /* inline text links — shares the action color. */
--color-button-bg: #5D3EBC; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
--text-h1: 34px;
--text-h2: 22px;
--text-body: 17px;
--radius-base: 12px;
--radius-button: 12px;
--color-btn-hover: #EC7210; /* measured primary hover fill */
--outline-focus: 3px solid rgb(9, 114, 211); /* measured focus ring */
--spacing-1: 4px;
--spacing-2: 8px;
--spacing-3: 12px;
--spacing-4: 16px;
--spacing-5: 24px;
--spacing-6: 32px;
--spacing-7: 48px;
--spacing-8: 64px;
}Export: CSS variables
:root {
/* action color #5D3EBC — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F1F1F5;
--border: #DEDCE8;
--text: #241668;
--text-muted: #776EA1;
--primary: #5D3EBC; /* primary brand / action color. */
--accent: #5D3EBC; /* 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: #5D3EBC; /* inline text links — shares the action color. */
--button-bg: #5D3EBC; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--radius: 12px;
--radius-button: 12px;
--btn-bg-hover: #EC7210;
--focus-ring: 3px solid rgb(9, 114, 211);
}