DESIGN SYSTEM

CHANN3L Style Guide

Comprehensive color system, typography, component reference, and usage guidelines for the CHANN3L website.

Logos

Primary wordmark and variations. The “3” is always rendered in the accent color.

ON LIGHT BACKGROUND

CHANN3L

ON DARK BACKGROUND

CHANN3L

NAV BAR (INLINE)

CHANN3L

WITH ASTERISK (SIDEBAR)

CHANN3L*

Usage Rules

  • • Always use all-caps: CHANN3L, never “Chann3l” or “chann3l”
  • • The “3” is always Electric green (#A1FF62) regardless of context
  • • Minimum clear space: 1x the height of the “3” character on all sides
  • • On dark backgrounds, remaining letters are white; on light, they are Ink (#201D1D)

Brand Colors

Core palette used across the site. Three-color accent system: Blaze (action), Signal (premium), Ink (content).

#F4F4F4

Cloud

background

#EAEAEA

Surface

surface

#E1E1E1

Border

border

#201D1D

Ink

foreground

#817F7F

Muted

muted

#A1FF62

Electric

accent

#6840FF

Purple

purple

#2A2727

Nav

nav-bg

#1A1818

Nav Edge

nav-border

Surface Colors

Background and surface variations for cards, overlays, and tinted states.

Card

card

Card Inner

card-inner

Card Hover

card-hover

Electric Muted

accent-muted

Purple Muted

purple-muted

Typography

Three type roles: Display (headings), Body (content), Mono (tags/labels). All use Geist font family.

DISPLAY HEADINGS

Display XL

display-heading · text-7xl · letter-spacing: -0.06em · weight: 400

Display Large

display-heading · text-5xl

Display Medium

display-heading · text-4xl

Display Small

display-heading · text-2xl

Usage: className="display-heading text-5xl"

BODY TEXT

Body Large — Used for hero subtitles and key descriptions. Geist Sans, 18px, regular weight, relaxed line-height.

text-lg · leading-relaxed

Body Base — Standard paragraph text for descriptions, section intros, and content blocks. Geist Sans, 16px.

text-base · leading-relaxed

Small / Muted — Secondary text, captions, metadata. Used for descriptions under cards, breadcrumbs, and helper text.

text-sm · text-muted

MONO TAGS

THIS IS A MONO TAG

Used for section labels, badge text, category tags, and system metadata. Geist Mono, uppercase, 11px, wide tracking.

className="mono-tag" · font-mono · uppercase · text-[0.6875rem] · tracking-wide

SECTION LABELSKILLINTERMEDIATEPREMIUM

Buttons

Three button styles: Blaze (primary action), Signal (secondary/premium), and Outline (tertiary).

ON LIGHT BACKGROUND

ON DARK BACKGROUND

NAV LAUNCH BUTTON

Nav context

The nav “Launch” button uses Blaze green, small padding, sits inside the dark pill bar.

Tags & Badges

Mono-font labels used for categorization, status, and metadata throughout the site.

Skill Badges

SKILLMARKETINGNEW

Metadata Tags

INTERMEDIATEV1.0.030MIN

Category Active

ALL SKILLSPREMIUM

Section Labels (plain)

DESIGN SYSTEMHOW IT WORKSAI SKILL LIBRARY

Cards

Nested background pattern — cards use Card bg (#F4F4F4) with an inner area of Card Inner (#EAEAEA). No heavy borders or shadows.

marketing

Email Campaign

SKILL

Email Campaign

Full-lifecycle email campaign builder for any client.

Marketing

30 SKILLS

01

Find your skill

Browse the stack by channel, industry, role, or goal.

CARD ANATOMY

<!-- Skill Card: nested bg pattern -->
<div className="bg-card rounded-lg p-2">
  <div className="bg-card-inner rounded aspect-[16/10]">
    <!-- Visual preview area -->
    <span className="mono-tag bg-accent text-foreground rounded-full">SKILL</span>
  </div>
  <div className="px-1 pt-2.5 pb-1">
    <p className="text-sm font-medium">Skill Name</p>
    <p className="text-xs text-muted">Description...</p>
  </div>
</div>

Section Themes

Three background contexts used to create visual rhythm across pages.

LIGHT (DEFAULT)

Light section content

Background is Cloud (#F4F4F4). Use for hero sections, content areas, and primary page backgrounds.

Usage: className="bg-background" or default body

SURFACE (ALTERNATE)

Surface section content

Background is Surface (#EAEAEA). Use to alternate with light sections for visual separation.

Usage: className="bg-surface"

DARK (NAV / FOOTER / CTA)

Dark section content

Background is Nav (#2F2C2C). Use for the floating nav, footer, marquee bar, and high-contrast CTAs.

Usage: className="bg-nav-bg text-white"

SIGNAL (PREMIUM / CTA)

Signal section content

Background is Signal (#00D4FF). Use for premium pricing cards, testimonials, and emphasis blocks.

Usage: className="bg-purple text-white"

Stack Layout

App-like dashboard pattern for the skill browser. Fixed sidebar + scrollable content grid.

CHANN3L*

THE VAULT

30 All Skills
9 Paid Ads
5 Direct
4 Social

Welcome to the Stack

Search 30 skills

Email Campaign

Email Campaign

Facebook Ads

Facebook Ads

Brand Voice

Brand Voice

Blog Content

Blog Content

LAYOUT STRUCTURE

<div className="flex min-h-screen">
  <!-- Fixed sidebar: 288px, bg-card, border-r -->
  <aside className="w-72 bg-card border-r border-border fixed h-full">
    <Logo />
    <CategoryNav />   <!-- mono counts + names -->
    <SuiteLinks />
  </aside>

  <!-- Scrollable main: bg-surface -->
  <main className="flex-1 ml-72 bg-surface">
    <TopBar />        <!-- breadcrumb + sort dropdown -->
    <WelcomeSearch /> <!-- display heading + search input -->
    <SkillGrid />     <!-- 3-column grid of SkillCards -->
  </main>
</div>

Contrast Ratios

Key text/background combinations and their WCAG compliance.

TEXTBACKGROUNDRATIOPREVIEW
Ink #201D1DCloud #F4F4F413.2:1Sample
Muted #817F7FCloud #F4F4F44.6:1Sample
White #FFFFFFNav #2F2C2C10.8:1Sample
Blaze #FF8C00Nav #2F2C2C5.8:1Sample
Ink #201D1DSignal #00D4FF7.4:1Sample
Ink #201D1DBlaze #FF8C005.1:1Sample
Signal #00D4FFNav #2F2C2C8.2:1Sample

All primary combinations pass WCAG 2.1 Level AA (4.5:1 normal text, 3:1 large text).

Quick Reference

How to tell Claude to apply styles.

HOW TO THEME

<!-- Default light section -->
<section className="py-20 px-6">

<!-- Alternate surface section -->
<section className="py-20 px-6 bg-surface">

<!-- Dark section (nav/footer) -->
<section className="bg-nav-bg text-white">

<!-- Purple CTA section -->
<section className="bg-purple text-white">

HOW TO TELL ME

  • “Use a surface section” = bg-surface alternate
  • “Make it dark” = bg-nav-bg with white text
  • “Add a Signal CTA” = bg-purple with white text
  • “Use the stack layout” = sidebar + grid pattern
  • “Mono tag it” = mono-tag class, uppercase
  • “Display heading” = display-heading class, tight tracking
  • “Blaze button” = bg-accent primary CTA
  • “Signal button” = bg-purple secondary CTA

Eval · SkillIndex

Channel Your Skills
to Build Agency.

Upload your SKILL.md, system prompt, or agent definition. Get a SkillIndex score, a seven-dimension breakdown, and an improvement plan — in three minutes.