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.
Dusk
Original Dark
Dawn
Light Theme
Twilight
Deeper Dark
Forest
Earthy Dark
Retro
Vintage Warm
Ocean
Deep Blue
🎨
Dusk
Original Dark
Dawn
Light Theme
Twilight
Deeper Dark
Forest
Earthy Dark
Retro
Vintage Warm
Ocean
Deep Blue
Color Palette
Base Colors
Syntax Colors
Lavender (Keywords)
#bba6f7
Purple (Variables)
#d5b8f5
Peach (Constants)
#fab387
Yellow (Warnings)
#f5e5b8
See It In Action
JavaScript
1
2 function fibonacci ( n ) {
3 if ( n
<=< /span> 1 ) return n ;
4 return fibonacci ( n
- 1 ) + fibonacci ( n - 2 );
5 }
6
7 const MAX_ITERATIONS = 10 ;
8 const result = fibonacci ( MAX_ITERATIONS );
9 console . log ( `Result: ${result}` );
Python
1 from typing import List
2
3 class DataProcessor :
4
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 ]