Files
oak-gpui/styles/src/style_tree/project_diagnostics.ts
T
Nate Butler b015f506da WIP snake_case 1/?
through `contact_notification`
2023-06-28 22:42:57 -04:00

14 lines
432 B
TypeScript

import { ColorScheme } from "../theme/color_scheme"
import { background, text } from "./components"
export default function project_diagnostics(colorScheme: ColorScheme): any {
const layer = colorScheme.highest
return {
background: background(layer),
tabIconSpacing: 4,
tab_icon_width: 13,
tabSummarySpacing: 10,
emptyMessage: text(layer, "sans", "variant", { size: "md" }),
}
}