/** * Native window background colors per theme mode. Light: barely-cool off-white. * Dark: neutral charcoal. These match the renderer's page background so there's * no flash when a compositor overlay (tooltip, dropdown) first renders on Windows. * Intentionally accent-independent — the accent shows on buttons/links only. * * Shared between main/index.ts (BrowserWindow backgroundColor) and * renderer/src/theme.ts (CSS backgroundColor on the root div) so the two never * drift apart. */ export const PAGE_BACKGROUND = { light: '#f7f7f8', dark: '#161618' } as const