-
Notifications
You must be signed in to change notification settings - Fork 0
scale-color $lightness must use $secondary for dark themes #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: theme-color-scheme-pre
Are you sure you want to change the base?
scale-color $lightness must use $secondary for dark themes #4
Conversation
|
@claude review this PR |
1 similar comment
|
@claude review this PR |
|
Claude finished @akshayutture-augment's task —— View job Code Review Complete ✅Todo List
SummaryThis PR systematically updates color handling across 32 SCSS files to properly support dark themes. The changes wrap existing Pattern AnalysisThe PR follows a consistent pattern throughout: Before: color: scale-color($primary, $lightness: 50%);After: color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));The
Key Observations✅ Strengths
|
Test 7
Replicated from ai-code-review-evaluation/discourse-greptile#7