This commit is contained in:
Nate Butler 2022-10-05 12:40:38 -04:00
parent 4a61b1011e
commit 5bc074005c
3 changed files with 5 additions and 5 deletions

View file

@ -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: {

View file

@ -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: {

View file

@ -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);