mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
Add a warm charcoal dark mode ("Night Ops") using CSS variable swapping
under [data-theme="dark"]. All 23 desert palette variables are overridden
with dark-mode counterparts, and ~313 generic Tailwind classes (bg-white,
text-gray-*, border-gray-*) are replaced with semantic tokens.
Infrastructure:
- CSS variable overrides in app.css for both themes
- ThemeProvider + useTheme hook (localStorage + KV store sync)
- ThemeToggle component (moon/sun icons, "Night Ops"/"Day Ops" labels)
- FOUC prevention script in inertia_layout.edge
- Toggle placed in StyledSidebar and Footer for access on every page
Color replacements across 50 files:
- bg-white → bg-surface-primary
- bg-gray-50/100 → bg-surface-secondary
- text-gray-900/800 → text-text-primary
- text-gray-600/500 → text-text-secondary/text-text-muted
- border-gray-200/300 → border-border-subtle/border-border-default
- text-desert-white → text-white (fixes invisible text on colored bg)
- Button hover/active states use dedicated btn-green-hover/active vars
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import { useState, useEffect, useCallback } from 'react'
|
|
import api from '~/lib/api'
|
|
|
|
export type Theme = 'light' | 'dark'
|
|
|
|
const STORAGE_KEY = 'nomad:theme'
|
|
|
|
function getInitialTheme(): Theme {
|
|
try {
|
|
const stored = localStorage.getItem(STORAGE_KEY)
|
|
if (stored === 'dark' || stored === 'light') return stored
|
|
} catch {}
|
|
return 'light'
|
|
}
|
|
|
|
export function useTheme() {
|
|
const [theme, setThemeState] = useState<Theme>(getInitialTheme)
|
|
|
|
const setTheme = useCallback((newTheme: Theme) => {
|
|
setThemeState(newTheme)
|
|
document.documentElement.setAttribute('data-theme', newTheme)
|
|
try {
|
|
localStorage.setItem(STORAGE_KEY, newTheme)
|
|
} catch {}
|
|
// Fire-and-forget KV store sync for cross-device persistence
|
|
api.updateSetting('ui.theme', newTheme).catch(() => {})
|
|
}, [])
|
|
|
|
const toggleTheme = useCallback(() => {
|
|
setThemeState((prev) => {
|
|
const next = prev === 'light' ? 'dark' : 'light'
|
|
document.documentElement.setAttribute('data-theme', next)
|
|
try {
|
|
localStorage.setItem(STORAGE_KEY, next)
|
|
} catch {}
|
|
api.updateSetting('ui.theme', next).catch(() => {})
|
|
return next
|
|
})
|
|
}, [])
|
|
|
|
// Apply theme on mount
|
|
useEffect(() => {
|
|
document.documentElement.setAttribute('data-theme', theme)
|
|
}, [])
|
|
|
|
return { theme, setTheme, toggleTheme }
|
|
}
|