Figma-sourced ยท iOS & Android ยท React Native

The Nest
Design System

Started as a handful of Figma explorations. Scaled into a full design system using Claude Code and Figma MCP. Every token, component, and guideline reflects how Myna actually looks, feels, and moves across iOS, Android, and web.

7
Color Palettes
15
Type Styles
33
Components
iOS+Android
Platforms
Navigate

Everything you need

Six comprehensive pages covering every aspect of the Nest Design System โ€” from raw tokens to mobile-native components and multimodal AI patterns.

Colors

Color with intention

Seven complete palettes. Ten steps each. Every shade mapped to a semantic role โ€” from brand purple to progress green.

Primary ยท Purple
50 ยท #f1eefe
100 ยท #e4defe
200 ยท #cabdfc
300 ยท #af9cfb
400 ยท #957bf9
500 โ˜… ยท #7a5af8
600 ยท #6248c6
700 ยท #493695
800 ยท #312463
900 ยท #181232
Secondary ยท Green
50 ยท #f0fdf4
100
200
300
400 โ˜… ยท #4ade80
500
600
700
800
900
Neutral
50
100
200
300
400
500
600
700
800
900
Success
50
100
200
300
400
500 โ˜…
600
700
800
900
Warning
50
100
200
300
400
500 โ˜…
600
700
800
900
Error (from Figma)
50
100
200
300
400
500 โ˜…
600
700
800
900
View full color system โ†’
Typography

Type that communicates

Poppins for display impact. Inter for UI clarity. Every size purposeful, every weight intentional.

Display XL ยท Poppins 700 ยท 56px
Aa
Heading H1 ยท Inter 700 ยท 32px
Hey Dave,
Welcome back!
Heading H2 ยท Inter 600 ยท 24px
Nest Score: 625
Body Large ยท Inter 400 ยท 16px
You're on a roll โ€” your Nest Score grew by +17 points this week! Keep the momentum going.
Label M ยท Inter 500 ยท 12px ยท spaced
CAMPAIGNS ACTIVE ยท 3 PENDING
Code ยท JetBrains Mono ยท 14px
<Button variant="primary">
Get Started
</Button>
View full type scale โ†’
Components

Built for every interaction

Every component is interactive, accessible, and comes with React code and usage guidelines.

Active Live Pending Error Info Draft
SG
DM
A
B
+3
Google Review
Collect reviews from your customers automatically.
Notifications
Campaign published successfully
Review limit approaching (80%)
Nest Score72%
Loading
Campaign Status Reviews
Google Reviews Live 142
Yelp Boost Pending 37
Facebook Page Draft โ€”
View all 20+ components with code โ†’
Principles

Built on purpose

Every decision in the Nest Design System is guided by four core principles that shape how we build and use it.

โ—ˆ
Figma-first
Every token, color, and component was extracted directly from your Figma file โ€” your design intent, perfectly preserved in code.
โฌก
Composable
Atomic, composable primitives that combine into complex patterns. Build anything from the same small set of well-designed parts.
โ—Ž
Accessible
WCAG AA compliance at minimum. Proper contrast ratios, keyboard navigation, ARIA attributes, and focus management built-in.
โšก
Performant
Zero runtime overhead. Pure CSS custom properties for theming. No heavy JS frameworks โ€” just clean, optimised primitives.
Quick Start

Get up and running in minutes

Import the design tokens, drop in the CSS, and start building with Nest components right away.

globals.css
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

:root {
  --primary: #7a5af8;
  --accent:  #4ade80;
  --bg:      #0d0d0f;
  /* ... see colors.html for all tokens */
}

/* Import Nest component styles */
@import './nest/components.css';
Browse Components View Tokens
Copied!