Skip to main content

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.

Codely Dark styles the entire VS Code workbench, not just the editor. Every surface — from the Activity Bar to the integrated terminal — draws from the same Gruvbox-rooted palette so nothing feels out of place. The sections below catalogue every workbench color token the theme sets, grouped by surface area.

Editor

The editor area itself uses the deepest background tone for the canvas, a slightly lighter value for the active line, and the purple cursor to make the insertion point unmistakable.
SurfaceColor TokenHex
Backgroundeditor.background#1e1e1e
Foregroundeditor.foreground#ebdbb2
Line highlight backgroundeditor.lineHighlightBackground#262626
Selectioneditor.selectionBackground#442b43
Find match highlighteditor.findMatchHighlightBackground#442b43
CursoreditorCursor.foreground#81277e
Bracket match backgroundeditorBracketMatch.background#442b43
Bracket match bordereditorBracketMatch.border#262626
Indent guideeditorIndentGuide.background#262626
Line numbereditorLineNumber.foreground#555049
Active line numbereditorLineNumber.activeForeground#c6c6c6
Suggest widget backgroundeditorSuggestWidget.background#1e1e1e
Suggest widget bordereditorSuggestWidget.border#262626
Suggest widget foregroundeditorSuggestWidget.foreground#ebdbb2
Suggest widget selectioneditorSuggestWidget.selectedBackground#262626

Activity Bar

The Activity Bar uses the yellow-green accent for all active states, making the currently selected view icon immediately obvious.
SurfaceColor TokenHex
BackgroundactivityBar.background#1e1e1e
Active item backgroundactivityBar.activeBackground#262626
BorderactivityBar.border#262626
Active icon border (indicator)activityBar.activeBorder#b8bb26
Active icon foregroundactivityBar.foreground#b8bb26
Inactive icon foregroundactivityBar.inactiveForeground#ebdbb2
Drop borderactivityBar.dropBorder#b8bb26
Badge backgroundactivityBarBadge.background#ebdbb2
Badge foregroundactivityBarBadge.foreground#1e1e1e
The sidebar shares the same background as the main editor, keeping the visual footprint minimal.
SurfaceColor TokenHex
BackgroundsideBar.background#1e1e1e
ForegroundsideBar.foreground#ebdbb2
BordersideBar.border#262626
Title foregroundsideBarTitle.foreground#ebdbb2
Active selection backgroundlist.activeSelectionBackground#262626

Tabs

The active tab lifts slightly in brightness and gains the yellow-green bottom border indicator, while inactive tabs sit at the base background tone.
SurfaceColor TokenHex
Active tab backgroundtab.activeBackground#262626
Active tab border (bottom indicator)tab.activeBorder#b8bb26
Inactive tab backgroundtab.inactiveBackground#1e1e1e
Tab bordertab.border#262626
Tab hover backgroundtab.hoverBackground#262626
Tab container backgroundeditorGroupHeader.tabsBackground#1e1e1e
Tab container bordereditorGroupHeader.border#262626

Status Bar

The status bar stays flat and unobtrusive in the base background color, while the remote connection badge uses the yellow-green accent on a dark foreground for high contrast.
SurfaceColor TokenHex
BackgroundstatusBar.background#1e1e1e
ForegroundstatusBar.foreground#ebdbb2
BorderstatusBar.border#262626
No-folder backgroundstatusBar.noFolderBackground#1e1e1e
Remote item backgroundstatusBarItem.remoteBackground#b8bb26
Remote item foregroundstatusBarItem.remoteForeground#1e1e1e

Panels & Terminal

The panel area (Problems, Output, Terminal) uses the same background as the editor. Terminal ANSI colors are mapped to the Gruvbox-inspired accents so command-line output is immediately legible.
SurfaceColor TokenHex
Panel backgroundpanel.background#1e1e1e
Panel borderpanel.border#262626
Panel title active borderpanelTitle.activeBorder#b8bb26
Panel title active foregroundpanelTitle.activeForeground#ebdbb2
Panel title inactive foregroundpanelTitle.inactiveForeground#ebdbb2
Terminal foregroundterminal.foreground#ebdbb2
Terminal borderterminal.border#262626
ANSI bright blueterminal.ansiBrightBlue#95b7f7
ANSI bright greenterminal.ansiBrightGreen#b8bb26
ANSI greenterminal.ansiGreen#b8bb26
ANSI redterminal.ansiRed#fb5245
ANSI whiteterminal.ansiWhite#ebdbb2
ANSI yellowterminal.ansiYellow#fac149

Input & Dropdown

Input fields and dropdowns use the slightly elevated active-element background so they stand out from the surrounding sidebars and panels.
SurfaceColor TokenHex
Input backgroundinput.background#262626
Input borderinput.border#262626
Input foregroundinput.foreground#ebdbb2
Input placeholder foregroundinput.placeholderForeground#ebdbb29d
Input active option backgroundinputOption.activeBackground#1e1e1e
Input active option borderinputOption.activeBorder#b8bb26
Dropdown backgrounddropdown.background#1e1e1e
Dropdown borderdropdown.border#262626
Dropdown foregrounddropdown.foreground#ebdbb2
Dropdown list backgrounddropdown.listBackground#1e1e1e

Additional Surfaces

SurfaceColor TokenHex
Title bar active backgroundtitleBar.activeBackground#1e1e1e
Title bar inactive backgroundtitleBar.inactiveBackground#1e1e1e
Title bar bordertitleBar.border#262626
Minimap backgroundminimap.background#1e1e1e
Scrollbar sliderscrollbarSlider.background#262626
Progress barprogressBar.background#262626
Notification center bordernotificationCenter.border#b8bb26
Notification header backgroundnotificationCenterHeader.background#262626
Quick input backgroundquickInput.background#1e1e1e
Quick input foregroundquickInput.foreground#ebdbb2
Widget shadowwidget.shadow#262626
Window active borderwindow.activeBorder#262626
Menu backgroundmenu.background#1e1e1e
Menu bordermenu.border#262626
Menu selection bordermenu.selectionBorder#b8bb26

Overriding UI Colors

You can override any VS Code workbench color token without modifying the theme files. Add a workbench.colorCustomizations block to your settings.json and scope it to [Codely Dark] so the overrides only apply when the theme is active.
settings.json
{
  "workbench.colorCustomizations": {
    "[Codely Dark]": {
      "editor.background": "#1d2021",
      "activityBar.background": "#1d2021"
    }
  }
}
A full list of every VS Code workbench color token — including surfaces not covered above such as diff editor, peek view, debug toolbar, and notebook cells — is available in the official VS Code Theme Color Reference at https://code.visualstudio.com/api/references/theme-color.

Build docs developers (and LLMs) love