WIP

Nate Butler created

Change summary

styles/src/styleTree/contextMenu.ts | 6 +++---
styles/src/styleTree/statusBar.ts   | 2 +-
styles/src/themes/solarized.ts      | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)

Detailed changes

styles/src/styleTree/contextMenu.ts 🔗

@@ -11,15 +11,15 @@ export default function contextMenu(colorScheme: ColorScheme) {
   let layer = elevation.bottom;
   return {
     background: background(layer),
-    cornerRadius: 6,
-    padding: 6,
+    cornerRadius: 10,
+    padding: 4,
     shadow: elevation.shadow,
     border: border(layer),
     keystrokeMargin: 30,
     item: {
       iconSpacing: 8,
       iconWidth: 14,
-      padding: { left: 4, right: 4, top: 2, bottom: 2 },
+      padding: { left: 6, right: 6, top: 2, bottom: 2 },
       cornerRadius: 6,
       label: text(layer, "sans", { size: "sm" }),
       keystroke: {

styles/src/styleTree/statusBar.ts 🔗

@@ -54,7 +54,7 @@ export default function statusBar(colorScheme: ColorScheme) {
       iconSpacing: 2,
       summarySpacing: 6,
       text: text(layer, "sans", { size: "sm" }),
-      iconColorOk: foreground(layer, "positive"),
+      iconColorOk: foreground(layer, "variant"),
       iconColorWarning: foreground(layer, "warning"),
       iconColorError: foreground(layer, "negative"),
       containerOk: {

styles/src/themes/solarized.ts 🔗

@@ -34,4 +34,4 @@ const ramps = {
 };
 
 export const dark = createColorScheme(`${name}-dark`, false, ramps);
-export const light = createColorScheme(`${name}-light`, true, ramps);
+export const light = createColorScheme(`${name}-light`, true, ramps);