mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-10 12:19:28 +00:00
10a30cf330
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.
13 lines
429 B
TypeScript
13 lines
429 B
TypeScript
import { ColorScheme } from "../themes/common/colorScheme"
|
|
import { background, text } from "./components"
|
|
|
|
export default function projectDiagnostics(colorScheme: ColorScheme) {
|
|
let layer = colorScheme.highest
|
|
return {
|
|
background: background(layer),
|
|
tabIconSpacing: 4,
|
|
tabIconWidth: 13,
|
|
tabSummarySpacing: 10,
|
|
emptyMessage: text(layer, "sans", "variant", { size: "md" }),
|
|
}
|
|
}
|