project_diagnostics.ts
1import { ColorScheme } from "../theme/color_scheme"
2import { background, text } from "./components"
3
4export default function project_diagnostics(theme: ColorScheme): any {
5 return {
6 background: background(theme.highest),
7 tab_icon_spacing: 4,
8 tab_icon_width: 13,
9 tab_summary_spacing: 10,
10 empty_message: text(theme.highest, "sans", "variant", { size: "md" }),
11 }
12}