VSCode.Extension.eppz_Code icon indicating copy to clipboard operation
VSCode.Extension.eppz_Code copied to clipboard

Visual Code Theme Color Reference setup

Open calebeaires opened this issue 8 years ago • 8 comments

Would be great to have this extension with Theme Color Reference configuration to Visual Code. We can start from here:

{
    "workbench.colorCustomizations": {
        "activityBar.background": "#D9C679"
    }
}

calebeaires avatar Jul 03 '17 15:07 calebeaires

Thanks! I may look into this later on, with a low priority, however. The default UI theme has not much annoying details.

If only the tab guide lines are a bit overly brightened. But I did not found the corresponding property for that. Is there at all?

screen shot 2017-07-04 at 14 56 14

Geri-Borbas avatar Jul 04 '17 13:07 Geri-Borbas

Did some modification You can change that indent guide line color by changing editorIndentGuide.background color value

snipaste20170719_223631

ghost avatar Jul 19 '17 12:07 ghost

Wow, looks fine!

I'll put it into an update anytime soon. I think I can make them an extension contribution via contributes.configuration.

These are simple settings entries, right?

Geri-Borbas avatar Jul 19 '17 14:07 Geri-Borbas

Yep, those are settings overrides in setting.json.

ghost avatar Jul 19 '17 19:07 ghost

@eppz Awesome theme, but it would be great to include workbench colors too. Activity bar does not blend with the bluish rest and it looks pretty bad. I hope you fix it! Below is my suggestion.

For example

  • Added dimmed indent guide color
  • Added inactive tab color
  • Added activity bar color
  • Added sidebar background color

With sidebar open: image

With sidebar closed: image

Colors:

"workbench.colorCustomizations": {
    "activityBar.background": "#32353E",
    "editorIndentGuide.background": "#32353E",
    "sideBar.background": "#23252C",
    "tab.inactiveBackground": "#32353E"
}

moskal91 avatar Aug 21 '17 09:08 moskal91

@moskal91 Thanks! I have to upgrade the entire theme to a newer JSON notation to use workbench.colorCustomizations, so I will be roll out these changes alongside with other updates later on.

Geri-Borbas avatar Aug 21 '17 10:08 Geri-Borbas

In case someone is interested.. here's my current configuration that I'm working on.

Preview

"workbench.colorCustomizations": {
    "activityBar.background": "#23252C",

    "badge.background":"#5C6273",

    "dropdown.background": "#343740",

    "focusBorder":"#353a51",

    "editor.hoverHighlightBackground":"#3A3D47",
    "editorCodeLens.foreground": "#393d4b",
    "editorGroup.border": "#23252C",
    "editorGroupHeader.tabsBackground":"#23252C",
    "editorIndentGuide.background": "#32353E",

    "editorWidget.background":"#3E424D",
    "editorWidget.border": "#3E424D",

    "input.background": "#3E424D",
    "input.foreground": "#ffffff",
    "input.placeholderForeground": "#dddcd344",
    "inputOption.activeBorder": "#ff0000",

    "list.activeSelectionBackground": "#343740",
    "list.activeSelectionForeground": "#dddcd3",
    "list.hoverBackground": "#32353E",
    "list.focusBackground": "#343740",
    "list.focusForeground": "#dddcd3",
    "list.highlightForeground": "#ffffff",

    "peekView.border": "#32353E",
    "peekViewEditor.background": "#1F2026",
    "peekViewEditor.matchHighlightBackground": "#36363a",
    "peekViewEditorGutter.background": "#1F2026",
    "peekViewResult.background": "#23252C",
    "peekViewResult.matchHighlightBackground": "#3E424D",
    "peekViewResult.selectionBackground": "#3E424D",
    "peekViewResult.selectionForeground": "#dddcd3",
    "peekViewTitle.background": "#32353E",

    "scrollbar.shadow": "#23252C",
    "sideBar.background": "#23252C",
    "statusBar.background": "#23252C",

    "tab.border": "#23252C",
    "tab.activeBorder": "#2b2d35",
    "tab.activeBackground": "#2b2d35",
    "tab.inactiveBackground": "#23252C",

    "titleBar.activeBackground": "#23252C",
    "titleBar.inactiveBackground": "#23252C",

    "widget.shadow":"#23252C"
}

Note that this is on a Mac so I can't do everything you guys can and vice versa :)

nicovain avatar Jan 11 '18 14:01 nicovain

Wanted to bump this, as I installed this theme the other day and noticed the indent guides are blindingly bright. Super easy fix/tweak, but it'd be nice if it was part of the theme itself.

humidair1999 avatar Jun 29 '20 07:06 humidair1999