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>
59 lines
2.1 KiB
TypeScript
59 lines
2.1 KiB
TypeScript
import MapsLayout from '~/layouts/MapsLayout'
|
|
import { Head, Link } from '@inertiajs/react'
|
|
import MapComponent from '~/components/maps/MapComponent'
|
|
import StyledButton from '~/components/StyledButton'
|
|
import { IconArrowLeft } from '@tabler/icons-react'
|
|
import { FileEntry } from '../../types/files'
|
|
import Alert from '~/components/Alert'
|
|
|
|
export default function Maps(props: {
|
|
maps: { baseAssetsExist: boolean; regionFiles: FileEntry[] }
|
|
}) {
|
|
const alertMessage = !props.maps.baseAssetsExist
|
|
? 'The base map assets have not been installed. Please download them first to enable map functionality.'
|
|
: props.maps.regionFiles.length === 0
|
|
? 'No map regions have been downloaded yet. Please download some regions to enable map functionality.'
|
|
: null
|
|
|
|
return (
|
|
<MapsLayout>
|
|
<Head title="Maps" />
|
|
<div className="relative w-full h-screen overflow-hidden">
|
|
{/* Nav and alerts are overlayed */}
|
|
<div className="absolute top-0 left-0 right-0 z-50 flex justify-between p-4 bg-surface-secondary backdrop-blur-sm shadow-sm">
|
|
<Link href="/home" className="flex items-center">
|
|
<IconArrowLeft className="mr-2" size={24} />
|
|
<p className="text-lg text-text-secondary">Back to Home</p>
|
|
</Link>
|
|
<Link href="/settings/maps" className='mr-4'>
|
|
<StyledButton variant="primary" icon="IconSettings">
|
|
Manage Map Regions
|
|
</StyledButton>
|
|
</Link>
|
|
</div>
|
|
{alertMessage && (
|
|
<div className="absolute top-20 left-4 right-4 z-50">
|
|
<Alert
|
|
title={alertMessage}
|
|
type="warning"
|
|
variant="solid"
|
|
className="w-full"
|
|
buttonProps={{
|
|
variant: 'secondary',
|
|
children: 'Go to Map Settings',
|
|
icon: 'IconSettings',
|
|
onClick: () => {
|
|
window.location.href = '/settings/maps'
|
|
},
|
|
}}
|
|
/>
|
|
</div>
|
|
)}
|
|
<div className="absolute inset-0">
|
|
<MapComponent />
|
|
</div>
|
|
</div>
|
|
</MapsLayout>
|
|
)
|
|
}
|