Skip to content

Commit

Permalink
feat: add new panel-related colour contributions 🎨
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed May 21, 2020
1 parent 057b829 commit 7a1441d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/generators/mkui.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ function mkui({ ui, code }) {
* fast switching between views of the Side Bar.
*/
'activityBar.activeBorder': ui.accent.hex(),
'activityBar.dropBorder': ui.accent.hex(),
'activityBar.background': ui.background.panel.hex(),
'activityBar.border': ui.border.hex(),
'activityBar.foreground': ui.icon.foreground.hex(),
Expand Down Expand Up @@ -395,10 +396,15 @@ function mkui({ ui, code }) {
*/
'panel.background': ui.background.panel.hex(),
'panel.border': ui.border.hex(),
'panel.dropBorder': ui.accent.hex(),
'panelTitle.activeBorder': ui.accent.hex(),
'panelTitle.activeForeground': ui.text.primary.hex(),
'panelTitle.inactiveForeground': ui.text.secondary.hex(),
'panel.dropBackground': `${ui.background.drop.hex()}22`,
'panelSectionHeader.background': ui.background.panel.hex(),
'panelSectionHeader.foreground': ui.text.secondary.hex(),
'panelSectionHeader.border': ui.border.hex(),
'panelSection.border': ui.border.hex(),
'panelSection.dropBackground': `${ui.background.drop.hex()}22`,

/**
* Status Bar Colours
Expand Down

0 comments on commit 7a1441d

Please sign in to comment.