projectDiagnostics.ts

 1import { ColorScheme } from "../themes/common/colorScheme";
 2import { background, text } from "./components";
 3
 4export default function projectDiagnostics(colorScheme: ColorScheme) {
 5  let layer = colorScheme.highest;
 6  return {
 7    background: background(layer),
 8    tabIconSpacing: 4,
 9    tabIconWidth: 13,
10    tabSummarySpacing: 10,
11    emptyMessage: text(layer, "sans", "variant", { size: "md" }),
12  };
13}