mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-25 06:24:56 +00:00
174 lines
4.3 KiB
TypeScript
174 lines
4.3 KiB
TypeScript
import Theme from "../themes/theme";
|
|
import { backgroundColor, border, iconColor, shadow, text } from "./components";
|
|
import statusBar from "./statusBar";
|
|
|
|
export function workspaceBackground(theme: Theme) {
|
|
return backgroundColor(theme, 300)
|
|
}
|
|
|
|
export default function workspace(theme: Theme) {
|
|
|
|
const tab = {
|
|
height: 32,
|
|
background: workspaceBackground(theme),
|
|
iconClose: iconColor(theme, "muted"),
|
|
iconCloseActive: iconColor(theme, "active"),
|
|
iconConflict: iconColor(theme, "warning"),
|
|
iconDirty: iconColor(theme, "info"),
|
|
iconWidth: 8,
|
|
spacing: 8,
|
|
text: text(theme, "sans", "secondary", { size: "sm" }),
|
|
border: border(theme, "primary", {
|
|
left: true,
|
|
bottom: true,
|
|
overlay: true,
|
|
}),
|
|
padding: {
|
|
left: 8,
|
|
right: 8,
|
|
},
|
|
};
|
|
|
|
const activeTab = {
|
|
...tab,
|
|
background: backgroundColor(theme, 500),
|
|
text: text(theme, "sans", "active", { size: "sm" }),
|
|
border: {
|
|
...tab.border,
|
|
bottom: false,
|
|
},
|
|
};
|
|
|
|
return {
|
|
background: backgroundColor(theme, 300),
|
|
joiningProjectAvatar: {
|
|
cornerRadius: 40,
|
|
width: 80,
|
|
},
|
|
joiningProjectMessage: {
|
|
padding: 12,
|
|
...text(theme, "sans", "primary", { size: "lg" })
|
|
},
|
|
leaderBorderOpacity: 0.7,
|
|
leaderBorderWidth: 2.0,
|
|
tab,
|
|
activeTab,
|
|
modal: {
|
|
margin: {
|
|
bottom: 52,
|
|
top: 52,
|
|
},
|
|
cursor: "Arrow"
|
|
},
|
|
sidebarResizeHandle: {
|
|
background: border(theme, "primary").color,
|
|
padding: {
|
|
left: 1,
|
|
},
|
|
},
|
|
paneDivider: {
|
|
color: border(theme, "secondary").color,
|
|
width: 1,
|
|
},
|
|
statusBar: statusBar(theme),
|
|
titlebar: {
|
|
avatarWidth: 18,
|
|
avatarMargin: 8,
|
|
height: 33,
|
|
background: backgroundColor(theme, 100),
|
|
padding: {
|
|
left: 80,
|
|
right: 6,
|
|
},
|
|
title: text(theme, "sans", "primary"),
|
|
avatar: {
|
|
cornerRadius: 10,
|
|
border: {
|
|
color: "#00000088",
|
|
width: 1,
|
|
},
|
|
},
|
|
avatarRibbon: {
|
|
height: 3,
|
|
width: 12,
|
|
// TODO: The background for this ideally should be
|
|
// set with a token, not hardcoded in rust
|
|
},
|
|
border: border(theme, "primary", { bottom: true, overlay: true }),
|
|
signInPrompt: {
|
|
border: border(theme, "primary"),
|
|
cornerRadius: 6,
|
|
margin: {
|
|
top: 1,
|
|
},
|
|
padding: {
|
|
left: 6,
|
|
right: 6,
|
|
},
|
|
...text(theme, "sans", "secondary", { size: "xs" }),
|
|
hover: text(theme, "sans", "active", { size: "xs" }),
|
|
},
|
|
offlineIcon: {
|
|
color: iconColor(theme, "secondary"),
|
|
width: 16,
|
|
padding: {
|
|
right: 4,
|
|
},
|
|
},
|
|
shareIcon: {
|
|
cornerRadius: 6,
|
|
margin: { top: 3, bottom: 2, left: 6 },
|
|
color: iconColor(theme, "secondary"),
|
|
hover: {
|
|
background: backgroundColor(theme, 100, "hovered"),
|
|
color: iconColor(theme, "secondary"),
|
|
},
|
|
active: {
|
|
background: backgroundColor(theme, 100, "active"),
|
|
color: iconColor(theme, "active"),
|
|
},
|
|
activeHover: {
|
|
background: backgroundColor(theme, 100, "hovered"),
|
|
color: iconColor(theme, "active"),
|
|
}
|
|
},
|
|
outdatedWarning: {
|
|
...text(theme, "sans", "warning", { size: "xs" }),
|
|
background: backgroundColor(theme, "warning"),
|
|
border: border(theme, "warning"),
|
|
padding: {
|
|
left: 6,
|
|
right: 6,
|
|
},
|
|
cornerRadius: 6,
|
|
},
|
|
},
|
|
toolbar: {
|
|
height: 34,
|
|
background: backgroundColor(theme, 500),
|
|
border: border(theme, "secondary", { bottom: true }),
|
|
itemSpacing: 8,
|
|
padding: { left: 16, right: 8, top: 4, bottom: 4 },
|
|
},
|
|
breadcrumbs: {
|
|
...text(theme, "mono", "secondary"),
|
|
padding: { left: 6 },
|
|
},
|
|
disconnectedOverlay: {
|
|
...text(theme, "sans", "active"),
|
|
background: "#000000aa",
|
|
},
|
|
notification: {
|
|
margin: { top: 10 },
|
|
background: backgroundColor(theme, 300),
|
|
cornerRadius: 6,
|
|
padding: 12,
|
|
border: border(theme, "primary"),
|
|
shadow: shadow(theme),
|
|
},
|
|
notifications: {
|
|
width: 380,
|
|
margin: { right: 10, bottom: 10 },
|
|
}
|
|
};
|
|
}
|