ui: change default border color to 30% of primary color

This commit is contained in:
Keith Guerin
2026-02-10 22:33:38 -08:00
parent 2d13d9849b
commit 172ec8f92a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -139,7 +139,7 @@ export class Theme {
border: {
default: interpolateColor(
this.colors.Background,
this.colors.Gray,
this.colors.Foreground,
DEFAULT_BORDER_OPACITY,
),
focused: this.colors.AccentBlue,
@@ -410,7 +410,7 @@ export function createCustomTheme(customTheme: CustomTheme): Theme {
customTheme.border?.default ??
interpolateColor(
colors.Background,
colors.Gray,
colors.Foreground,
DEFAULT_BORDER_OPACITY,
),
focused: customTheme.border?.focused ?? colors.AccentBlue,