projectDiagnostics.ts
1import Theme from "../themes/common/theme";
2import { backgroundColor, text } from "./components";
3
4export default function projectDiagnostics(theme: Theme) {
5 return {
6 background: backgroundColor(theme, 500),
7 tabIconSpacing: 4,
8 tabIconWidth: 13,
9 tabSummarySpacing: 10,
10 emptyMessage: text(theme, "sans", "secondary", { size: "md" }),
11 };
12}