mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 13:24:19 +00:00
WIP
This commit is contained in:
parent
a6cccf82f7
commit
7080dc9c23
4 changed files with 6 additions and 5 deletions
|
@ -19,8 +19,8 @@ export default function commandPalette(colorScheme: ColorScheme) {
|
|||
left: 2,
|
||||
},
|
||||
active: {
|
||||
text: text(layer, "mono", "active", { size: "xs" }),
|
||||
background: background(layer, "on", "active"),
|
||||
text: text(layer, "mono", { size: "xs" }),
|
||||
background: background(layer),
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
@ -30,7 +30,7 @@ export default function editor(colorScheme: ColorScheme) {
|
|||
header: {
|
||||
border: border(layer, {
|
||||
top: true,
|
||||
}),
|
||||
})
|
||||
},
|
||||
message: {
|
||||
text: text(layer, "sans", styleSet, { size: "sm" }),
|
||||
|
|
|
@ -21,10 +21,11 @@ export default function picker(colorScheme: ColorScheme) {
|
|||
},
|
||||
cornerRadius: 8,
|
||||
text: text(layer, "sans"),
|
||||
highlightText: text(layer, "sans", "info", "active", { weight: "bold" }),
|
||||
highlightText: text(layer, "sans", "info", { weight: "bold" }),
|
||||
active: {
|
||||
background: background(layer, "active"),
|
||||
text: text(layer, "sans", "active"),
|
||||
highlightText: text(layer, "sans", "info", "active", { weight: "bold" }),
|
||||
},
|
||||
hover: {
|
||||
background: background(layer, "hovered"),
|
||||
|
|
|
@ -637,7 +637,7 @@ function topLayer(ramps: RampSet, isLight: boolean): Layer {
|
|||
default: 0.9,
|
||||
hovered: 0.9,
|
||||
pressed: 0.9,
|
||||
active: 0.9,
|
||||
active: 0.5,
|
||||
disabled: 0.2,
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue