13 lines
421 B
TypeScript
13 lines
421 B
TypeScript
import { ColorScheme } from "../theme/colorScheme"
|
|
import { background, text } from "./components"
|
|
|
|
export default function projectDiagnostics(colorScheme: ColorScheme) {
|
|
let layer = colorScheme.highest
|
|
return {
|
|
background: background(layer),
|
|
tabIconSpacing: 4,
|
|
tabIconWidth: 13,
|
|
tabSummarySpacing: 10,
|
|
emptyMessage: text(layer, "sans", "variant", { size: "md" }),
|
|
}
|
|
}
|