Screen Studio — Design System
Screen Studio ships no webfont at all — the native SF system stack at 62px with variable 650 weight IS the brand, exactly right for a macOS screen recorder. Pure-black canvas, zero-radius ghost buttons, and amber-glow app frames recreate the feel of a darkened editing suite; the product's smooth-zoom recordings play hero because on this page the OS is the design system.
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/screen-studio.
Tokens
Screen Studio's decoded design system: background #000000, text #FFFFFF, accent #A091FA, link #A091FA, primary #4D2FF5; type scale h1 62px / h2 24px / body 16px; 4px spacing base; 6px base radius. The single interactive/action color is #A091FA — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #000000 |
| surface | #0F0F0F |
| border | #262626 |
| text | #FFFFFF |
| text_muted | #9E9E9E |
| primary | #4D2FF5 |
| accent | #A091FA |
| link | #A091FA |
| secondary | #6248F6 |
| button_bg | transparent |
| button_text | #FFFFFF |
Using these colors
- Action color
#A091FA— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#A091FA— one role, not several (the action color).- accent
#A091FA— 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. - primary
#4D2FF5— a brand color — but the call-to-action uses #A091FA, not this. - secondary
#6248F6— 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: SF Pro (system stack)
- Body: SF Pro (system stack)
- h1: 62px
- h2: 24px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 6px
- button: 9px
Per-section tokens (13)
- Hero
- Logo Wall
- Gallery / Showcase
- Feature
- Bento Grid
- Feature
- Bento Grid
- Gallery / Showcase
- Feature
- Testimonial / Social Proof
- Pricing / Plans
- FAQ
- Footer
Export: DESIGN.md
# Screen Studio — Design System > dark, professional, medium, custom Screen Studio ships no webfont at all — the native SF system stack at 62px with variable 650 weight IS the brand, exactly right for a macOS screen recorder. Pure-black canvas, zero-radius ghost buttons, and amber-glow app frames recreate the feel of a darkened editing suite; the product's smooth-zoom recordings play hero because on this page the OS is the design system. ## Colors | Role | Value | |------|-------| | bg | `#000000` | | surface | `#0F0F0F` | | border | `#262626` | | text | `#FFFFFF` | | text_muted | `#9E9E9E` | | primary | `#4D2FF5` | | accent | `#A091FA` | | link | `#A091FA` | | secondary | `#6248F6` | | button_bg | `transparent` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#A091FA` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `link` are all `#A091FA` — one role, not several (your action color). - **accent** `#A091FA` — 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. - **primary** `#4D2FF5` — a brand color — but the call-to-action uses #A091FA, not this. - **secondary** `#6248F6` — 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: **SF Pro (system stack)** _(free fallback: Newsreader)_ - Body: **SF Pro (system stack)** _(free fallback: Newsreader)_ - h1: 62px - h2: 24px - body: 16px > **Fonts —** SF Pro (system stack) may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 6px - button: 9px ## Primary button - bg `transparent` · text `#FFFFFF` · radius 9px ## 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 #A091FA — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #000000;
--color-surface: #0F0F0F;
--color-border: #262626;
--color-text: #FFFFFF;
--color-text-muted: #9E9E9E;
--color-primary: #4D2FF5; /* a brand color — but the call-to-action uses #A091FA, not this. */
--color-accent: #A091FA; /* 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: #A091FA; /* inline text links — shares the action color. */
--color-secondary: #6248F6; /* 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: transparent;
--color-button-text: #FFFFFF;
/* fonts: SF Pro (system stack) may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "SF Pro (system stack)", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "SF Pro (system stack)", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 62px;
--text-h2: 24px;
--text-body: 16px;
--radius-base: 6px;
--radius-button: 9px;
--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 #A091FA — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #000000;
--surface: #0F0F0F;
--border: #262626;
--text: #FFFFFF;
--text-muted: #9E9E9E;
--primary: #4D2FF5; /* a brand color — but the call-to-action uses #A091FA, not this. */
--accent: #A091FA; /* 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: #A091FA; /* inline text links — shares the action color. */
--secondary: #6248F6; /* 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: transparent;
--button-text: #FFFFFF;
--font-heading: "SF Pro (system stack)", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "SF Pro (system stack)", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 6px;
--radius-button: 9px;
}
/* fonts: SF Pro (system stack) may be proprietary — safe free fallback: Newsreader (Google Fonts). */