diff --git a/assets/themes/dark.json b/assets/themes/dark.json index 77d3706e3b74334fbf446cb5a3f346288d7171dd..42785b123c47244f7567d3ff33ed3fb817c989ee 100644 --- a/assets/themes/dark.json +++ b/assets/themes/dark.json @@ -731,11 +731,11 @@ "key": { "text": { "family": "Zed Mono", - "color": "#ffffff", + "color": "#9c9c9c", "size": 12 }, "corner_radius": 4, - "background": "#0e0e0e", + "background": "#0e0e0e80", "border": { "color": "#232323", "width": 1 diff --git a/assets/themes/light.json b/assets/themes/light.json index dc4381ada8b71c4da6b327f8ba8286abbebed18a..9d810765e1bf799fe8f9be7c352d27990e17126e 100644 --- a/assets/themes/light.json +++ b/assets/themes/light.json @@ -731,7 +731,7 @@ "key": { "text": { "family": "Zed Mono", - "color": "#000000", + "color": "#474747", "size": 12 }, "corner_radius": 4, diff --git a/crates/picker/src/picker.rs b/crates/picker/src/picker.rs index f23467247820bf4117a8f5606dec9a009489fb61..ff9d653bc0da7cf32b1ceb2f367765a14fb30a89 100644 --- a/crates/picker/src/picker.rs +++ b/crates/picker/src/picker.rs @@ -138,7 +138,7 @@ impl Picker { list_state: Default::default(), update_task: None, delegate, - max_size: vec2f(500., 420.), + max_size: vec2f(540., 420.), confirmed: false, }; cx.defer(|this, cx| this.update_matches(cx)); diff --git a/styles/src/styleTree/commandPalette.ts b/styles/src/styleTree/commandPalette.ts index 9242f67cbe7114e579158e889d87a87966ee4a98..fbd9bea9b0686ce8bb6b237edd3ae1a0883e7ed3 100644 --- a/styles/src/styleTree/commandPalette.ts +++ b/styles/src/styleTree/commandPalette.ts @@ -5,7 +5,7 @@ export default function commandPalette(theme: Theme) { return { keystrokeSpacing: 8, key: { - text: text(theme, "mono", "active", { size: "xs" }), + text: text(theme, "mono", "secondary", { size: "xs" }), cornerRadius: 4, background: backgroundColor(theme, "on300"), border: border(theme, "secondary"), diff --git a/styles/src/themes/dark.ts b/styles/src/themes/dark.ts index 095c5864ef8f43d7fac1e224ac8befd9639ef5b3..f7407699dd27bf22456e86e3f03efdbe20f511c0 100644 --- a/styles/src/themes/dark.ts +++ b/styles/src/themes/dark.ts @@ -22,7 +22,7 @@ const backgroundColor = { focused: colors.neutral[825], }, on300: { - base: colors.neutral[850], + base: withOpacity(colors.neutral[850], 0.5), hovered: colors.neutral[875], active: colors.neutral[900], focused: colors.neutral[875],