Zenith

A soothing pastel colorscheme for the mindful coder

🎨

Soft Pastels

Carefully crafted pastel colors that are easy on the eyes without compromising contrast and readability.

✨

Soothing Aesthetic

Designed for comfortable long coding sessions with a deep purple-gray background that's gentle and elegant.

🚀

Universal Support

Available for VS Code, Neovim, and more editors. One colorscheme, everywhere you code.

Color Palette

Base Colors

Background
#1e1e2e
Background Alt
#252535
Foreground
#e0dfe8
Foreground Alt
#b8b5c9

Syntax Colors

Lavender (Keywords)
#bba6f7
Sky (Types)
#91d7e3
Green (Strings)
#a6e3a1
Purple (Variables)
#d5b8f5
Peach (Constants)
#fab387
Blue (Functions)
#89b4fa
Yellow (Warnings)
#f5e5b8
Rose (Errors)
#f5b5c8
Cyan (Operators)
#7dd4ed
Info Blue
#a8b5f5

See It In Action

JavaScript

1// Calculate fibonacci sequence 2function fibonacci(n) { 3 if (n <=< /span> 1) return n; 4 return fibonacci(n - 1) + fibonacci(n - 2); 5} 6 7const MAX_ITERATIONS = 10; 8const result = fibonacci(MAX_ITERATIONS); 9console.log(`Result: ${result}`);

Python

1from typing import List 2 3class DataProcessor: 4 """Process and analyze data efficiently""" 5 6 def __init__(self, data: List[int]): 7 self.data = data 8 self.THRESHOLD = 100 9 10 def process(self) -> List[int]: 11 return [x * 2 for x in self.data if x << /span> self.THRESHOLD]