-
Notifications
You must be signed in to change notification settings - Fork 2
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
style: update color token name 3 digits #1955
Merged
QuintonJason
merged 31 commits into
mercury-rising
from
fix/update-color-token-name-3-digits
Oct 2, 2024
Merged
Changes from 30 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
2e12557
fix(frame): add box shadow to bordered frame (#1958)
QuintonJason 49951e2
style: remove border from box like elements with box shadows (#1967)
QuintonJason 60e8be0
fix: change legacy colors to mapped values ie red 500 to red 95
QuintonJason db39059
fix: remove old 100 tokens
QuintonJason 9ca76b3
fix: add 0 to make token 3 digits
QuintonJason 23ac201
fix: add red color classes
QuintonJason 96dbb7b
fix: add 0 to green color token names
QuintonJason 89cd25d
fix: add 0 to blue color token names
QuintonJason 2b03d37
fix: add 0 to mercury color token names
QuintonJason 898a1d0
fix: add 0 to yellow color token names
QuintonJason c521526
fix: add 0 to purple color token names
QuintonJason d10e776
fix: update grey color token names to 3 digits
QuintonJason 7dcc2c7
fix: update react green colors
QuintonJason c527b1e
fix: update react purple colors
QuintonJason 8af1541
fix: update red in jsx and erb
QuintonJason 3476ad3
fix: update orange color token to mercury
QuintonJason c9ce881
fix: update charcoal color token to upper greys
QuintonJason 8e3ad3f
fix: update grey color token to lower greys
QuintonJason a695b95
fix: add options for default color values
QuintonJason c2fcfe3
chore: remove whitespace
QuintonJason 020550c
fix: self review fix grey 300 and grey 400 in css
QuintonJason 4c1b3d0
Revert "fix: self review fix grey 300 and grey 400 in css"
QuintonJason fbef081
Revert "fix: update grey color token to lower greys"
QuintonJason 33c2f43
fix: update grey color token to lower greys
QuintonJason f297884
Revert "fix: update grey color token to lower greys"
QuintonJason 4999217
style: update purple color token to use three digits
kajabi-bot a72be75
style: update additional 2 digit token value to 3 digit token values
kajabi-bot 6e6323e
style: added zero to mercury 30
QuintonJason cc38799
style: update templating to wrap 050 values in single-quotes
kajabi-bot 554fa7b
style(breadcrumbs): change charcoal 400 to grey 900
kajabi-bot 0fd7903
fix: update gray to grey instances
QuintonJason File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to add this because of how
050
was being treated. This will generate the class name.color-blue-050
instead of.color-blue-50
, which is incorrect.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch