eclipse-theia/theia

theming: support theming customizations through the preferences

Open

#8,060 opened on Jun 19, 2020

View on GitHub
 (4 comments) (8 reactions) (0 assignees)TypeScript (2,478 forks)batch import
enhancementhelp wantedpreferencestheming

Repository metrics

Stars
 (18,676 stars)
PR merge metrics
 (Avg merge 15d 4h) (75 merged PRs in 30d)

Description

Feature Description:

The goal is to support customization of the theme through the preferences (settings.json). With this ability, end-users can easily customize their application's theme (such as the editor), in order to meet their needs and taste.

For example, I use the following theming customizations in my own vscode app (user settings):

"workbench.colorCustomizations": {
  "activityBar.background": "#181818",
  "editor.background": "#1D1D1D",
  "menu.background": "#222222",
  "panel.background": "#222222",
  "sideBar.background": "#1A1A1A",
  "statusBar.background": "#181818"
}

I'd like to see such customziations possible from the framework one day :smiley:

Contributor guide