'#4a7c8a', 'fluss' => '#5a8a5e', 'heli' => '#e8833a', 'stadt' => '#c85c4a', 'regenwald' => '#3a6b3e', 'erdbeben' => '#8a6a4a', 'energiemix'=> '#c4a97a', 'lieferketten'=> '#b07aa1', ]; $defaultColor = '#c4a97a'; // Icons + Titel aus module_info (Admin-pflegbar) $modDb = getDB()->query(" SELECT module_id, title, icon, sort_order FROM module_info WHERE status IN ('aktiv', 'beta') ORDER BY sort_order, title ")->fetchAll(PDO::FETCH_ASSOC); $moduleMeta = []; foreach ($modDb as $m) { $moduleMeta[$m['module_id']] = [ 'icon' => $m['icon'] ?: '📘', 'label' => $m['title'], 'color' => $moduleColors[$m['module_id']] ?? $defaultColor, ]; } ?>