zed/styles/src/styleTree/projectDiagnostics.ts
Nate Butler 6fc68a8ddd Move projectDiagnostics to it's own file and remove unused code
Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
2022-04-28 14:52:12 -04:00

15 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" }),
}
}