Fix nav links color issue in light theme (#461)#504
Conversation
|
👋 Thanks for opening this Pull Request! 🎉 We'll review it as soon as possible. Before we proceed, please double check:
Happy contributing! 🚀 |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughNavbar icon, link, and language selector colors now use ChangesNavbar theme colors
Estimated code review effort: 1 (Trivial) | ~5 minutes Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
| input: { | ||
| backgroundColor: 'transparent', | ||
| color: theme.colors.primary[1], | ||
| color: 'var(--mantine-color-text)', |
There was a problem hiding this comment.
Can we use the theme object like it was before? i dont want to mix global variables in here
| > | ||
| {theme ? <IconMoon size={16} /> : <IconSun size={16} />} | ||
| {theme ? ( | ||
| <IconMoon size={16} color="var(--mantine-color-text)" /> |
There was a problem hiding this comment.
Is it possible to pass style object to this? instead of inline like this? , also lets use the colors from the theme
Fixes #461
Description
Fixes an issue where navigation links were not clearly visible in light theme due to incorrect color handling.
Changes
Testing
Summary by CodeRabbit