fix: restore node styling, simplify framework for new themes

This commit is contained in:
Gustav
2025-01-09 13:38:03 -05:00
parent f734565844
commit 483ae21e89
20 changed files with 1792 additions and 388 deletions

View File

@@ -16,7 +16,7 @@ export const MapRootContent = ({}: MapRootContentProps) => {
const { interfaceSettings } = useMapRootState();
const { isShowMenu } = interfaceSettings;
const themeClass = `${interfaceSettings.theme ?? 'neon'}-theme`;
const themeClass = `${interfaceSettings.theme ?? 'default'}-theme`;
const [showOnTheMap, setShowOnTheMap] = useState(false);
const [showMapSettings, setShowMapSettings] = useState(false);

View File

@@ -115,7 +115,7 @@ const UI_CHECKBOXES_PROPS: SettingsListItem[] = [
];
const THEME_OPTIONS = [
{ label: 'Default', value: 'neon' },
{ label: 'Default', value: 'default' },
{ label: 'Pathfinder', value: 'pathfinder' },
];