mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 04:44:30 +00:00
Don't use 'on' color for projects in the contact list
This commit is contained in:
parent
0940482c62
commit
aa549d1da7
1 changed files with 6 additions and 6 deletions
|
@ -63,7 +63,7 @@ export default function contactsPanel(colorScheme: ColorScheme) {
|
|||
top: 4,
|
||||
},
|
||||
margin: {
|
||||
left: 6
|
||||
left: 6,
|
||||
},
|
||||
},
|
||||
userQueryEditorHeight: 33,
|
||||
|
@ -151,7 +151,7 @@ export default function contactsPanel(colorScheme: ColorScheme) {
|
|||
color: foreground(layer, "on"),
|
||||
},
|
||||
callingIndicator: {
|
||||
...text(layer, "mono", "variant", { size: "xs" })
|
||||
...text(layer, "mono", "variant", { size: "xs" }),
|
||||
},
|
||||
treeBranch: {
|
||||
color: borderColor(layer),
|
||||
|
@ -165,7 +165,7 @@ export default function contactsPanel(colorScheme: ColorScheme) {
|
|||
},
|
||||
projectRow: {
|
||||
...projectRow,
|
||||
background: background(layer, "on"),
|
||||
background: background(layer),
|
||||
icon: {
|
||||
margin: { left: nameMargin },
|
||||
color: foreground(layer, "variant"),
|
||||
|
@ -176,11 +176,11 @@ export default function contactsPanel(colorScheme: ColorScheme) {
|
|||
...text(layer, "mono", { size: "sm" }),
|
||||
},
|
||||
hover: {
|
||||
background: background(layer, "on", "hovered"),
|
||||
background: background(layer, "hovered"),
|
||||
},
|
||||
active: {
|
||||
background: background(layer, "on", "active"),
|
||||
background: background(layer, "active"),
|
||||
},
|
||||
},
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue