Drata — Design System
Drata frames compliance as an engineering console: Geist at 48px/600 over blue-black #0F161A, sharp 4px-radius buttons in electric #2E4DFF, and GRC dashboard screenshots arranged like a security operations wall. The restrained scale and mono-adjacent Geist voice make audit automation read as developer tooling rather than enterprise paperwork.
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/drata.
Tokens
Drata's decoded design system: background #0F161A, text #ECECEE, accent #2E4DFF, link #2E4DFF, primary #1C262B; type scale h1 48px / h2 36px / body 16px; 4px spacing base; 4px base radius. The single interactive/action color is #2E4DFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #0F161A |
| surface | #1C2226 |
| border | #303639 |
| text | #ECECEE |
| text_muted | #989A9D |
| primary | #1C262B |
| accent | #2E4DFF |
| link | #2E4DFF |
| secondary | #0F1F3D |
| button_bg | #2E4DFF |
| button_text | #FFFFFF |
Using these colors
- Action color
#2E4DFF— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#2E4DFF— one role, not several (the action color).- accent
#2E4DFF— 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
#1C262B— a brand color — but the call-to-action uses #2E4DFF, not this. - secondary
#0F1F3D— 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: Geist
- Body: Geist
- Mono: Geist Mono
- h1: 48px
- h2: 36px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 4px
- button: 4px
Per-section tokens (14)
- Hero
- Logo Wall
- Feature
- Feature
- Feature
- Feature
- Stats / Metrics
- Feature
- Testimonial / Social Proof
- Integrations
- Feature
- Pricing / Plans
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Drata — Design System > dark, professional, medium, custom Drata frames compliance as an engineering console: Geist at 48px/600 over blue-black #0F161A, sharp 4px-radius buttons in electric #2E4DFF, and GRC dashboard screenshots arranged like a security operations wall. The restrained scale and mono-adjacent Geist voice make audit automation read as developer tooling rather than enterprise paperwork. ## Colors | Role | Value | |------|-------| | bg | `#0F161A` | | surface | `#1C2226` | | border | `#303639` | | text | `#ECECEE` | | text_muted | `#989A9D` | | primary | `#1C262B` | | accent | `#2E4DFF` | | link | `#2E4DFF` | | secondary | `#0F1F3D` | | button_bg | `#2E4DFF` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#2E4DFF` — 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`, `button_bg` are all `#2E4DFF` — one role, not several (your action color). - **accent** `#2E4DFF` — 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** `#1C262B` — a brand color — but the call-to-action uses #2E4DFF, not this. - **secondary** `#0F1F3D` — 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: **Geist** - Body: **Geist** - Mono: **Geist Mono** - h1: 48px - h2: 36px - body: 16px > **Fonts —** Geist — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 4px - button: 4px ## Primary button - bg `#2E4DFF` · text `#FFFFFF` · radius 4px ## 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 #2E4DFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #0F161A;
--color-surface: #1C2226;
--color-border: #303639;
--color-text: #ECECEE;
--color-text-muted: #989A9D;
--color-primary: #1C262B; /* a brand color — but the call-to-action uses #2E4DFF, not this. */
--color-accent: #2E4DFF; /* 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: #2E4DFF; /* inline text links — shares the action color. */
--color-secondary: #0F1F3D; /* 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: #2E4DFF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Geist — free, on Google. */
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "Geist Mono", ui-monospace, monospace;
--text-h1: 48px;
--text-h2: 36px;
--text-body: 16px;
--radius-base: 4px;
--radius-button: 4px;
--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 #2E4DFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #0F161A;
--surface: #1C2226;
--border: #303639;
--text: #ECECEE;
--text-muted: #989A9D;
--primary: #1C262B; /* a brand color — but the call-to-action uses #2E4DFF, not this. */
--accent: #2E4DFF; /* 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: #2E4DFF; /* inline text links — shares the action color. */
--secondary: #0F1F3D; /* 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: #2E4DFF; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "Geist Mono", ui-monospace, monospace;
--radius: 4px;
--radius-button: 4px;
}
/* fonts: Geist — free, on Google. */