/** * dense — density modifier (NOT a full color theme). * * Tight radius (0.25rem) + slightly stronger neutral chrome for data-heavy * admin tables/grids where rows need crisp separation. Overrides only neutral * surfaces (radius/border/input/divider/muted/card/accent) and inherits brand * colors from the active base/brand preset, so it composes with `django-cfg`. * Light and dark are symmetric. */ import type { ThemePreset } from './types'; export const densePreset: ThemePreset = { light: { radius: '0.25rem', border: 'hsl(0 0% 82%)', input: 'hsl(0 0% 82%)', divider: 'hsl(0 0% 88%)', muted: 'hsl(0 0% 94%)', card: 'hsl(0 0% 100%)', accent: 'hsl(0 0% 93%)', }, dark: { radius: '0.25rem', border: 'hsl(0 0% 24%)', input: 'hsl(0 0% 24%)', divider: 'hsl(0 0% 18%)', muted: 'hsl(0 0% 12%)', card: 'hsl(0 0% 10%)', accent: 'hsl(0 0% 14%)', }, };