Official Brand Identity System

Folderwise Brand Kit

The complete visual identity — logos, colors, typography, voice. Use these assets consistently everywhere.

Color Palette

All colors are defined as CSS custom properties in index.css. Click any swatch to copy its hex value.

Copy #8B5CF6
Folderwise Purple
#8B5CF6·rgb(139, 92, 246)
Primary — CTAs, brand identity, key highlights
Copy #6366F1
Deep Indigo
#6366F1·rgb(99, 102, 241)
Secondary — gradient partner, hover states
Copy #7C3AED
Rich Violet
#7C3AED·rgb(124, 58, 237)
Dark variant — pressed states, deep emphasis
Copy #06060F
Midnight Background
#06060F·rgb(6, 6, 15)
App background — dark canvas, full immersion
Copy #0F0F1E
Dark Surface
#0F0F1E·rgb(15, 15, 30)
Card backgrounds, elevated surfaces
Copy #F0EEFF
Foreground White
#F0EEFF·rgb(240, 238, 255)
Primary text — warm white, slight purple tint
Copy #3F3F5A
Muted Slate
#3F3F5A·rgb(63, 63, 90)
Borders, dividers, subtle backgrounds
Copy #38BDF8
Accent Cyan
#38BDF8·rgb(56, 189, 248)
AI features, data callouts, stats
Copy #34D399
Success Green
#34D399·rgb(52, 211, 153)
Inbox zero celebration, positive outcomes
Copy #F87171
Alert Red
#F87171·rgb(248, 113, 113)
Urgency, pain points, unsubscribe moments
Copy #F59E0B
Energy Amber
#F59E0B·rgb(245, 158, 11)
Enterprise tier, premium feel, warnings
Copy #F472B6
Hot Pink
#F472B6·rgb(244, 114, 182)
Email/content category color, highlight

Gradients

Official gradient combinations. Copy the CSS value directly.

Brand Primary
CTAs, hero buttons, primary actions
linear-gradient(135deg, #8B5CF6, #6366F1)
Brand Deep
Pressed states, dark emphasis
linear-gradient(135deg, #7C3AED, #4F46E5)
Hero Glow
Background orbs, hero section glow
radial-gradient(circle, #6D28D9 0%, transparent 65%)
Rainbow Text
Headline accent text, animated words
linear-gradient(135deg, #a78bfa 0%, #38bdf8 60%, #34d399 100%)
Danger
Unsubscribe feature, alert moments
linear-gradient(135deg, #F87171, #F472B6)
Success
Inbox zero moments, success states
linear-gradient(135deg, #34D399, #38BDF8)
Premium
Enterprise tier, premium badge
linear-gradient(135deg, #F59E0B, #F472B6)
Dark Card
Feature cards, bento grid items
linear-gradient(135deg, rgba(109,40,217,0.25), rgba(99,102,241,0.1))

CSS Variables — Ready to Copy

/* Folderwise Brand Colors */
:root {
  --fw-purple: #8B5CF6;   /* Primary */
  --fw-indigo: #6366F1;   /* Secondary */
  --fw-violet: #7C3AED;   /* Dark variant */
  --fw-bg:     #06060F;   /* Background */
  --fw-surface:#0F0F1E;   /* Card surface */
  --fw-white:  #F0EEFF;   /* Foreground text */
  --fw-slate:  #3F3F5A;   /* Borders */
  --fw-cyan:   #38BDF8;   /* AI/data accent */
  --fw-green:  #34D399;   /* Success */
  --fw-red:    #F87171;   /* Alert/urgent */
  --fw-amber:  #F59E0B;   /* Premium */
  --fw-pink:   #F472B6;   /* Email/content */
}