fix(nav): improve text contrast in room info pane
Change text colors from white to dark gray for better readability against the light background. The previous white-on-light-purple was nearly unreadable. - Game name: dark gray (rgba(17, 24, 39, 0.9)) - Room name: dark gray (rgba(17, 24, 39, 0.65)) - Dropdown indicator: dark gray (rgba(17, 24, 39, 0.5)) - Mode text: keeps color-coded text for visual distinction 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -88,7 +88,7 @@ export function RoomInfo({
|
||||
gap: '4px',
|
||||
fontSize: '13px',
|
||||
fontWeight: 'bold',
|
||||
color: 'rgba(255, 255, 255, 0.95)',
|
||||
color: 'rgba(17, 24, 39, 0.9)',
|
||||
lineHeight: 1,
|
||||
}}
|
||||
>
|
||||
@@ -99,7 +99,7 @@ export function RoomInfo({
|
||||
<span
|
||||
style={{
|
||||
fontSize: '9px',
|
||||
color: 'rgba(255, 255, 255, 0.6)',
|
||||
color: 'rgba(17, 24, 39, 0.5)',
|
||||
lineHeight: 1,
|
||||
}}
|
||||
>
|
||||
@@ -128,7 +128,7 @@ export function RoomInfo({
|
||||
style={{
|
||||
fontSize: '10px',
|
||||
fontWeight: '600',
|
||||
color: 'rgba(255, 255, 255, 0.75)',
|
||||
color: 'rgba(17, 24, 39, 0.65)',
|
||||
lineHeight: 1,
|
||||
}}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user