Skip to content

Commit

Permalink
feat(ui): redesign tab bar (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston authored Nov 30, 2023
1 parent 6f2c682 commit 66e9220
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/theme/uiColors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const getUiColors = (
"badge.foreground": palette.text,

"breadcrumb.activeSelectionForeground": accent,
"breadcrumb.background": palette.mantle,
"breadcrumb.background": palette.base,
"breadcrumb.focusForeground": accent,
"breadcrumb.foreground": opacity(palette.text, 0.8),
"breadcrumbPicker.background": palette.mantle,
Expand Down Expand Up @@ -403,14 +403,22 @@ export const getUiColors = (

// Tab Bar
"tab.activeBackground": palette.base,
"tab.activeBorder": accent,
"tab.activeBorderTop": transparent,
"tab.activeBorder": transparent,
"tab.activeBorderTop": accent,
"tab.activeForeground": accent,
"tab.activeModifiedBorder": palette.yellow,
"tab.border": palette.mantle,
"tab.hoverBackground": shade(palette.base, 0.1),
"tab.hoverBorder": transparent,
"tab.hoverForeground": accent,
"tab.inactiveBackground": palette.mantle,
"tab.inactiveForeground": palette.overlay0,
"tab.activeModifiedBorder": palette.yellow,
"tab.inactiveModifiedBorder": opacity(palette.yellow, 0.3),
"tab.lastPinnedBorder": accent,
"tab.unfocusedActiveBackground": palette.mantle,
"tab.unfocusedActiveBorder": transparent,
"tab.unfocusedActiveBorderTop": opacity(accent, 0.3),
"tab.unfocusedInactiveBackground": shade(palette.mantle, -0.05),

// Terminal
"terminal.foreground": palette.text,
Expand Down

0 comments on commit 66e9220

Please sign in to comment.