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