Akiflow — Design System
Akiflow sells consolidation with an all-Inter system: 54px/600 headlines in slate #212833 over cool #F8FAFC, 18px working text, and deep-purple #550097 buttons at 10px radius as the single brand accent. Four-up suite cards and integration logos hammer the all-in-one story — time-blocking software built like the spreadsheet-tidy mind it promises you.
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/akiflow.
Tokens
Akiflow's decoded design system: background #F8FAFC, text #323B4A, accent #550097, link #550097, primary #550097; type scale h1 54px / h2 18px / body 18px; 4px spacing base; 8px base radius. The single interactive/action color is #550097 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F8FAFC |
| surface | #ECEEF1 |
| border | #DADDE1 |
| text | #323B4A |
| text_muted | #7D838D |
| primary | #550097 |
| accent | #550097 |
| link | #550097 |
| secondary | #323B4A |
| button_bg | #550097 |
| button_text | #0000EE |
Using these colors
- Action color
#550097— the single interactive color; only on things you click or must notice, never large fills. primary,accent,link,button_bgare all#550097— one role, not several (the action color).- accent
#550097— 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
#323B4A— 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: 54px
- h2: 18px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 10px
Shadow
rgba(144, 0, 255, 0.2) 0px 1px 16px 0px
Per-section tokens (13)
- Hero
- Logo Wall
- Feature
- Feature
- Feature
- Feature
- Feature
- Feature
- Gallery / Showcase
- Feature
- Feature
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Akiflow — Design System > light, modern, medium, custom Akiflow sells consolidation with an all-Inter system: 54px/600 headlines in slate #212833 over cool #F8FAFC, 18px working text, and deep-purple #550097 buttons at 10px radius as the single brand accent. Four-up suite cards and integration logos hammer the all-in-one story — time-blocking software built like the spreadsheet-tidy mind it promises you. ## Colors | Role | Value | |------|-------| | bg | `#F8FAFC` | | surface | `#ECEEF1` | | border | `#DADDE1` | | text | `#323B4A` | | text_muted | `#7D838D` | | primary | `#550097` | | accent | `#550097` | | link | `#550097` | | secondary | `#323B4A` | | button_bg | `#550097` | | button_text | `#0000EE` | **Using these colors** - **Action color** `#550097` — 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 `#550097` — one role, not several (your action color). - **accent** `#550097` — 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** `#323B4A` — 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: 54px - h2: 18px - body: 18px > **Fonts —** Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 10px ## Primary button - bg `#550097` · text `#0000EE` · radius 10px ## 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 #550097 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F8FAFC;
--color-surface: #ECEEF1;
--color-border: #DADDE1;
--color-text: #323B4A;
--color-text-muted: #7D838D;
--color-primary: #550097; /* primary brand / action color. */
--color-accent: #550097; /* 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: #550097; /* inline text links — shares the action color. */
--color-secondary: #323B4A; /* 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: #550097; /* primary-button fill — the main call-to-action color. */
--color-button-text: #0000EE;
/* 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: 54px;
--text-h2: 18px;
--text-body: 18px;
--radius-base: 8px;
--radius-button: 10px;
--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 #550097 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F8FAFC;
--surface: #ECEEF1;
--border: #DADDE1;
--text: #323B4A;
--text-muted: #7D838D;
--primary: #550097; /* primary brand / action color. */
--accent: #550097; /* 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: #550097; /* inline text links — shares the action color. */
--secondary: #323B4A; /* 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: #550097; /* primary-button fill — the main call-to-action color. */
--button-text: #0000EE;
--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: 10px;
}
/* fonts: Inter — free, on Google. */