fix(ui): replace dark green colors with standard theme colors#285
Merged
fix(ui): replace dark green colors with standard theme colors#285
Conversation
- Update light theme SUCCESS color from #009664 to #00967D (standard teal) - Update light theme ERROR color from #B42828 to #D93D3D (standard darker red) - Update light theme WARNING color from #B47800 to #C99A2E (standard darker amber) - Replace dark green hints color in renderer with TEXT_DIM (#829AB1) These changes align with the established color palette in cortex-core/style.rs and cortex-tui/ui/colors.rs for better consistency across the UI.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replace dark green colors with the standard theme colors from the existing palette.
Changes
styled_output.rs (light theme):
#009664→#00967D(standard teal from colors.rs)#B42828→#D93D3D(standard darker red)#B47800→#C99A2E(standard darker amber)renderer.rs (hints):
Color::Rgb(0, 100, 0)withTEXT_DIMfrom the standard paletteMotivation
Align with the established color palette in
cortex-core/style.rsandcortex-tui/ui/colors.rsfor better consistency across the UI.