diff --git a/src/components/panes/map/map-styles.css b/src/components/panes/map/map-styles.css index 7b0b379..dbea17f 100644 --- a/src/components/panes/map/map-styles.css +++ b/src/components/panes/map/map-styles.css @@ -1,7 +1,7 @@ -/* React Flow dark theme overrides for RA-H Map */ +/* React Flow theme overrides for RA-H Map */ .rah-map-wrapper .react-flow__background { - background: #080808 !important; + background: var(--rah-bg-base) !important; } .rah-map-wrapper .react-flow__pane { @@ -14,7 +14,7 @@ /* Edges */ .rah-map-wrapper .react-flow__edge-path { - stroke: #374151; + stroke: var(--rah-border-strong); stroke-width: 1.5; } @@ -48,11 +48,11 @@ /* Custom node styles */ .rah-map-node { - background: #0f0f0f; - border: 1px solid #2a2a2a; + background: var(--rah-bg-surface); + border: 1px solid var(--rah-border-strong); border-radius: 8px; padding: 8px 12px; - color: #e5e7eb; + color: var(--rah-text-base); font-size: 12px; min-width: 60px; max-width: 180px; @@ -61,7 +61,7 @@ } .rah-map-node:hover { - border-color: #3a3a3a; + border-color: var(--rah-border-stronger); } .rah-map-node--selected { @@ -71,12 +71,12 @@ .rah-map-node--top { border-color: #166534; - background: #0a1a0f; + background: var(--rah-bg-panel); } .rah-map-node--expanded { border-color: #b45309; - background: #1a150a; + background: var(--rah-bg-panel); } .rah-map-node--expanded .rah-map-node__title { @@ -103,7 +103,7 @@ .rah-map-node__dims { margin-top: 4px; font-size: 10px; - color: #a1a1aa; + color: var(--rah-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; @@ -114,7 +114,7 @@ width: 8px !important; height: 8px !important; background: #22c55e !important; - border: 2px solid #0f0f0f !important; + border: 2px solid var(--rah-bg-surface) !important; opacity: 0; transition: opacity 0.15s ease; } @@ -140,9 +140,9 @@ opacity: 0.6; } -/* MiniMap dark theme */ +/* MiniMap */ .rah-map-wrapper .react-flow__minimap { - background: #0a0a0a; - border: 1px solid #1f1f1f; + background: var(--rah-bg-base); + border: 1px solid var(--rah-border); border-radius: 6px; } diff --git a/src/components/skills/SkillCard.tsx b/src/components/skills/SkillCard.tsx index 6d0d181..fb5c5a9 100644 --- a/src/components/skills/SkillCard.tsx +++ b/src/components/skills/SkillCard.tsx @@ -26,20 +26,20 @@ export default function SkillCard({ return (