mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 12:54:42 +00:00
WIP
This commit is contained in:
parent
4a61b1011e
commit
5bc074005c
3 changed files with 5 additions and 5 deletions
|
@ -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: {
|
||||
|
|
|
@ -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: {
|
||||
|
|
|
@ -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);
|
Loading…
Reference in a new issue