Use primary text color for keystrokes in command palette

Max Brunsfeld created

Change summary

assets/themes/dark.json                | 2 +-
assets/themes/light.json               | 2 +-
styles/src/styleTree/commandPalette.ts | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)

Detailed changes

assets/themes/dark.json 🔗

@@ -713,7 +713,7 @@
     "key": {
       "text": {
         "family": "Zed Mono",
-        "color": "#9c9c9c",
+        "color": "#f1f1f1",
         "size": 12
       },
       "corner_radius": 3,

assets/themes/light.json 🔗

@@ -713,7 +713,7 @@
     "key": {
       "text": {
         "family": "Zed Mono",
-        "color": "#474747",
+        "color": "#2b2b2b",
         "size": 12
       },
       "corner_radius": 3,

styles/src/styleTree/commandPalette.ts 🔗

@@ -5,7 +5,7 @@ export default function commandPalette(theme: Theme) {
   return {
     keystrokeSpacing: 8,
     key: {
-      text: text(theme, "mono", "secondary", { size: "xs" }),
+      text: text(theme, "mono", "primary", { size: "xs" }),
       cornerRadius: 3,
       background: backgroundColor(theme, "info", "base"),
       border: border(theme, "info"),