diff --git a/styles/src/styleTree/commandPalette.ts b/styles/src/styleTree/commandPalette.ts index 70af97e8451578b3dafa5e1847bb6092a07154cf..b4bc25bb8bacea77e181525643061e504c99d507 100644 --- a/styles/src/styleTree/commandPalette.ts +++ b/styles/src/styleTree/commandPalette.ts @@ -19,8 +19,8 @@ export default function commandPalette(colorScheme: ColorScheme) { left: 2, }, active: { - text: text(layer, "mono", "active", { size: "xs" }), - background: background(layer, "on", "active"), + text: text(layer, "mono", { size: "xs" }), + background: background(layer), }, }, }; diff --git a/styles/src/styleTree/editor.ts b/styles/src/styleTree/editor.ts index 208ecdbfeea213f79e99063d4dcb005d00d13ec9..3b4a46141b9b6494f6cbf61335d0bf2905b5088c 100644 --- a/styles/src/styleTree/editor.ts +++ b/styles/src/styleTree/editor.ts @@ -30,7 +30,7 @@ export default function editor(colorScheme: ColorScheme) { header: { border: border(layer, { top: true, - }), + }) }, message: { text: text(layer, "sans", styleSet, { size: "sm" }), diff --git a/styles/src/styleTree/picker.ts b/styles/src/styleTree/picker.ts index 738824b16f162efe19ab77998fe07f7585238aad..69648bf402fd67546fbae3c633e1184dea19bcbe 100644 --- a/styles/src/styleTree/picker.ts +++ b/styles/src/styleTree/picker.ts @@ -21,10 +21,11 @@ export default function picker(colorScheme: ColorScheme) { }, cornerRadius: 8, text: text(layer, "sans"), - highlightText: text(layer, "sans", "info", "active", { weight: "bold" }), + highlightText: text(layer, "sans", "info", { weight: "bold" }), active: { background: background(layer, "active"), text: text(layer, "sans", "active"), + highlightText: text(layer, "sans", "info", "active", { weight: "bold" }), }, hover: { background: background(layer, "hovered"), diff --git a/styles/src/themes/common/ramps.ts b/styles/src/themes/common/ramps.ts index 9e218e421706154238931ed2a162a0a9f69e756f..5c1d2b0e906a86a17fbdc0c5bde00bc530a34c93 100644 --- a/styles/src/themes/common/ramps.ts +++ b/styles/src/themes/common/ramps.ts @@ -637,7 +637,7 @@ function topLayer(ramps: RampSet, isLight: boolean): Layer { default: 0.9, hovered: 0.9, pressed: 0.9, - active: 0.9, + active: 0.5, disabled: 0.2, }, });