THEME 1 / 6

Dark Theme

Default theme — dark background with cyan accent

Features

  • Deep navy background
  • --ts-accent: #00d2ff
  • Purple secondary (#7b61ff)
fn main() {
    println!("Dark theme");
    // Cyan code highlighting
}
THEME 2 / 6

Light Theme

Clean white background with blue accent

Features

  • White background
  • --ts-accent: #0066cc
  • Purple secondary (#5a3d8a)
fn main() {
    println!("Light theme");
    // Great for bright rooms
}
THEME 3 / 6

Corporate Theme

Professional navy with soft blue accent

Features

  • Deep navy background
  • --ts-accent: #4da6ff
  • Light blue secondary (#82b1ff)
fn main() {
    println!("Corporate theme");
    // Business presentations
}
THEME 4 / 6

Neon Theme

Black background with glowing green and magenta

Features

  • Pure black background
  • --ts-accent: #39ff14
  • Glow text-shadow effects
fn main() {
    println!("Neon theme");
    // Cyberpunk vibes
}
THEME 5 / 6

Paper Theme

Warm sepia with rose accent and serif typography

Features

  • Warm cream background
  • --ts-accent: #b16286
  • Georgia serif font (academic feel)
fn main() {
    println!("Paper theme");
    // Academic & literary
}
THEME 6 / 6

Minimal Theme

Pure black and white — zero distraction

Features

  • White background
  • --ts-accent: #111111
  • Helvetica Neue (clean sans-serif)
fn main() {
    println!("Minimal theme");
    // Content-first design
}