Once Codely Theme is installed, activating it takes a single command. The warm Gruvbox palette — deep charcoal backgrounds, amber-cream text, and vivid accent colors — is immediately applied to every open file, the editor chrome, and the integrated terminal all at once.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/CodelyTV/vscode-theme/llms.txt
Use this file to discover all available pages before exploring further.
Activate the theme
Open the Command Palette with
Ctrl+Shift+P on Windows/Linux or Cmd+Shift+P on macOS. Type Preferences: Color Theme and press Enter. Scroll through the list and select Codely Dark. The editor repaints instantly — no restart required.Verify the palette
Open any source file. Check that:
- The editor background is
#1e1e1e(deep charcoal). - Plain text and variables appear in
#ebdbb2(warm amber-cream). - Keywords and storage modifiers are rendered in
#fb5245(red), typically in italic. - Strings glow in
#b8bb26(yellow-green). - Function names are highlighted in
#fac149(gold).
Optional: Tune your font
Codely Theme pairs especially well with a monospace font that supports ligatures, since the theme uses italic styles extensively for keywords, decorators, and comments. To enable ligatures, add the following to your Both Fira Code and JetBrains Mono are excellent choices. Open
settings.json:settings.json via the Command Palette by running Preferences: Open User Settings (JSON).Verifying Syntax Highlighting
Paste the snippet below into a.py file to check that Python token colors are applied as expected. You should see comments in muted brown (#a89984), the @dataclass decorator in italic, class and function names in teal (#8ec07c), the docstring in italic brown, the f-string prefix in yellow-green (#b8bb26), and the {self.name} placeholder in gold (#fac149).