Update projectBrowser styles

This commit is contained in:
Nate Butler 2022-04-29 01:35:58 -04:00
parent 67181a16c0
commit f4dbe4d976
9 changed files with 79 additions and 66 deletions

View file

@ -6,7 +6,7 @@ import { backgroundColor, iconColor, text, TextColor } from "./components";
export default function projectPanel(theme: Theme) {
function entry(theme: Theme, textColor: TextColor, background?: Color) {
return {
height: 22,
height: 24,
background,
iconColor: iconColor(theme, "muted"),
iconSize: 8,
@ -17,21 +17,18 @@ export default function projectPanel(theme: Theme) {
return {
...panel,
entry: entry(theme, "secondary"),
entry: entry(theme, "muted"),
hoveredEntry: entry(
theme,
"secondary",
"primary",
backgroundColor(theme, 300, "hovered")
),
selectedEntry: entry(theme, "primary"),
hoveredSelectedEntry: entry(
theme,
"primary",
"active",
backgroundColor(theme, 300, "hovered")
),
padding: {
top: 6,
left: 12,
},
padding: { left: 12, right: 12, top: 6, bottom: 6 },
};
}