diff --git a/packages/main/src/plugin/color-registry.ts b/packages/main/src/plugin/color-registry.ts index e9a34f20e5a..ce740121fcf 100644 --- a/packages/main/src/plugin/color-registry.ts +++ b/packages/main/src/plugin/color-registry.ts @@ -281,6 +281,10 @@ export class ColorRegistry { dark: colorPalette.charcoal[600], light: colorPalette.gray[100], }); + this.registerColor(`${glNav}bg-border`, { + dark: colorPalette.charcoal[500], + light: colorPalette.gray[300], + }); this.registerColor(`${glNav}icon`, { dark: colorPalette.gray[600], light: colorPalette.charcoal[200], diff --git a/packages/renderer/src/AppNavigation.svelte b/packages/renderer/src/AppNavigation.svelte index 9fafb113788..937e0d833c3 100644 --- a/packages/renderer/src/AppNavigation.svelte +++ b/packages/renderer/src/AppNavigation.svelte @@ -244,7 +244,7 @@ export let meta: TinroRouteMeta;