mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-11 04:36:24 +00:00
In the system color PR I updated the prettier config to match what we use on zed.dev. I didn't want to format all of styles as it would add a lot of unrelated line changes to that PR. Doing that format now.
103 lines
2.7 KiB
TypeScript
103 lines
2.7 KiB
TypeScript
import { ColorScheme } from "../themes/common/colorScheme"
|
|
import { withOpacity } from "../utils/color"
|
|
import { text, border, background, foreground } from "./components"
|
|
|
|
export default function tabBar(colorScheme: ColorScheme) {
|
|
const height = 32
|
|
|
|
let activeLayer = colorScheme.highest
|
|
let layer = colorScheme.middle
|
|
|
|
const tab = {
|
|
height,
|
|
text: text(layer, "sans", "variant", { size: "sm" }),
|
|
background: background(layer),
|
|
border: border(layer, {
|
|
right: true,
|
|
bottom: true,
|
|
overlay: true,
|
|
}),
|
|
padding: {
|
|
left: 8,
|
|
right: 12,
|
|
},
|
|
spacing: 8,
|
|
|
|
// Close icons
|
|
iconWidth: 14,
|
|
iconClose: foreground(layer, "variant"),
|
|
iconCloseActive: foreground(layer, "hovered"),
|
|
|
|
// Indicators
|
|
iconConflict: foreground(layer, "warning"),
|
|
iconDirty: foreground(layer, "accent"),
|
|
|
|
// When two tabs of the same name are open, a label appears next to them
|
|
description: {
|
|
margin: { left: 8 },
|
|
...text(layer, "sans", "disabled", { size: "2xs" }),
|
|
},
|
|
}
|
|
|
|
const activePaneActiveTab = {
|
|
...tab,
|
|
background: background(activeLayer),
|
|
text: text(activeLayer, "sans", "active", { size: "sm" }),
|
|
border: {
|
|
...tab.border,
|
|
bottom: false,
|
|
},
|
|
}
|
|
|
|
const inactivePaneInactiveTab = {
|
|
...tab,
|
|
background: background(layer),
|
|
text: text(layer, "sans", "variant", { size: "sm" }),
|
|
}
|
|
|
|
const inactivePaneActiveTab = {
|
|
...tab,
|
|
background: background(activeLayer),
|
|
text: text(layer, "sans", "variant", { size: "sm" }),
|
|
border: {
|
|
...tab.border,
|
|
bottom: false,
|
|
},
|
|
}
|
|
|
|
const draggedTab = {
|
|
...activePaneActiveTab,
|
|
background: withOpacity(tab.background, 0.9),
|
|
border: undefined as any,
|
|
shadow: colorScheme.popoverShadow,
|
|
}
|
|
|
|
return {
|
|
height,
|
|
background: background(layer),
|
|
activePane: {
|
|
activeTab: activePaneActiveTab,
|
|
inactiveTab: tab,
|
|
},
|
|
inactivePane: {
|
|
activeTab: inactivePaneActiveTab,
|
|
inactiveTab: inactivePaneInactiveTab,
|
|
},
|
|
draggedTab,
|
|
paneButton: {
|
|
color: foreground(layer, "variant"),
|
|
iconWidth: 12,
|
|
buttonWidth: activePaneActiveTab.height,
|
|
hover: {
|
|
color: foreground(layer, "hovered"),
|
|
},
|
|
},
|
|
paneButtonContainer: {
|
|
background: tab.background,
|
|
border: {
|
|
...tab.border,
|
|
right: false,
|
|
},
|
|
},
|
|
}
|
|
}
|