Files
amcs/ui/src/gridTheme.ts
T
warkanum 927a118338
CI / build-and-test (push) Failing after -31m53s
feat(ui): add maintenance page for task management
* Implement maintenance page with task and log display
* Add backfill and metadata retry functionality
* Integrate grid component for project display in thoughts page
* Update types for maintenance tasks and logs
* Enhance sidebar and shell for new maintenance navigation
2026-04-26 23:13:41 +02:00

19 lines
477 B
TypeScript

import type { GridlerTheme } from '@warkypublic/svelix';
export const adminGridTheme: Partial<GridlerTheme> = {
accentColor: '#22d3ee',
accentFg: '#06232b',
bgCell: '#020617',
bgHeader: '#0f172a',
bgHeaderHasFocus: '#164e63',
bgSearchResult: '#083344',
borderColor: '#1e293b',
foreground: '#cbd5e1',
fontFamily: 'Inter, system-ui, sans-serif',
fontSize: 13,
headerFontSize: 12,
lineHeight: 1.4,
cellHorizontalPadding: 10,
cellVerticalPadding: 8
};