projectDiagnostics.ts

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