mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-11 12:46:07 +00:00
16 lines
358 B
TypeScript
16 lines
358 B
TypeScript
|
import Theme from "../themes/theme";
|
||
|
import {
|
||
|
backgroundColor,
|
||
|
text,
|
||
|
} from "./components";
|
||
|
|
||
|
export default function projectDiagnostics(theme: Theme) {
|
||
|
return {
|
||
|
background: backgroundColor(theme, 500),
|
||
|
tabIconSpacing: 4,
|
||
|
tabIconWidth: 13,
|
||
|
tabSummarySpacing: 10,
|
||
|
emptyMessage: text(theme, "sans", "secondary", { size: "md" }),
|
||
|
}
|
||
|
}
|