Default theme — dark background with cyan accent
--ts-accent: #00d2fffn main() {
println!("Dark theme");
// Cyan code highlighting
}
Clean white background with blue accent
--ts-accent: #0066ccfn main() {
println!("Light theme");
// Great for bright rooms
}
Professional navy with soft blue accent
--ts-accent: #4da6fffn main() {
println!("Corporate theme");
// Business presentations
}
Black background with glowing green and magenta
--ts-accent: #39ff14fn main() {
println!("Neon theme");
// Cyberpunk vibes
}
Warm sepia with rose accent and serif typography
--ts-accent: #b16286fn main() {
println!("Paper theme");
// Academic & literary
}
Pure black and white — zero distraction
--ts-accent: #111111fn main() {
println!("Minimal theme");
// Content-first design
}