Skip to content

Commit

Permalink
feat: commandCenter
Browse files Browse the repository at this point in the history
  • Loading branch information
wiidede committed Nov 18, 2022
1 parent 560bf76 commit fa73c5f
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function getTheme({ style, name, soft = false, black = false }) {
'dropdown.foreground': foreground,
'dropdown.listBackground': activeBackground,

'input.background': activeBackground,
'input.background': focusBackground,
'input.border': border,
'input.foreground': foreground,
'input.placeholderForeground': secondaryForeground,
Expand Down Expand Up @@ -95,6 +95,12 @@ export default function getTheme({ style, name, soft = false, black = false }) {
'sideBarSectionHeader.background': background,
'sideBarSectionHeader.border': border,

'menu.background': focusBackground,
'menu.selectionBackground': deepBackground,

'commandCenter.border': border,
'commandCenter.inactiveBorder': border,

'list.hoverForeground': activeForeground,
'list.inactiveSelectionForeground': primary,
'list.activeSelectionForeground': primary,
Expand All @@ -103,6 +109,7 @@ export default function getTheme({ style, name, soft = false, black = false }) {
'list.activeSelectionBackground': activeBackground,
'list.inactiveFocusBackground': background,
'list.focusBackground': activeBackground,
'list.highlightForeground': primary,

'tree.indentGuidesStroke': pick({ light: primer.gray[2], dark: primer.gray[1] }),

Expand All @@ -115,10 +122,12 @@ export default function getTheme({ style, name, soft = false, black = false }) {
'notificationsWarningIcon.foreground': themeColor('orange'),
'notificationsInfoIcon.foreground': themeColor('blue'),

'pickerGroup.border': primer.gray[2],
'pickerGroup.border': border,
'pickerGroup.foreground': foreground,
'quickInput.background': background,
'quickInput.background': focusBackground,
'quickInput.foreground': foreground,
'quickInputList.focusBackground': deepBackground,
'quickInputList.focusForeground': primary,

'statusBar.foreground': activeForeground,
'statusBar.background': background,
Expand Down

0 comments on commit fa73c5f

Please sign in to comment.