Update color yellow dark for accessibility
sarahill opened this issue Β· 8 comments
Update color-yellow-dark for accessibility
Problem
Yellow dark is currently used for text and icons to convey a warning to the merchant in the UI. It doesn't currently pass WCAG constrast standards of 4.5:1.
We started to run into the issue when updating the ExceptionList. See for details Shopify/polaris#813
Solution
I slightly adjusted the brightness to help with contrast. Update yellow dark
to use #8A6116
instead of #9c6f19
.
Follow these steps
- If you havenβt yet, clone this repository
dev clone polaris-tokens dev up
- Fetch tokens from Invision DSM (Design System Manager)
dev cd polaris-tokens git checkout master git pull git checkout -B update-color-tokens yarn getTokensFromInvisionDSM yarn dist yarn test -u
- Update
CHANGELOG.md
- Commit & push the changes
git commit -am "Update color tokens to the latest version" git push origin update-color-tokens
- Open a pull request
Sounds like a good change, do you need help to ship it? Happy to walk through the process together.
I think I remember how to do it. I will reach out with questions though. Thank you!
I'm having some trouble when I run the following.
yarn get-tokens-from-invision-dsm
yarn dist
yarn test -u
After I pull the colors from DSM it seems to be deleting all of the colors except purple. I thought I had done something wrong previously so I closed the branch and started over but same thing. Any ideas @kaelig ? I didn't edit anything except for yellow-dark
in the DSM Sketch plugin.
What I'm seeing locally:
Sorry about that! It seems like the order in which color palettes come from the API has changed. Our script was picking up the first palette, which in this case is now the purple palette.
I just pushed a fix to master
in 4ea8f91, can you try again?
That worked! Thanks, Kaelig :) PR opened.
Note: this was released as part of @shopify/polaris-tokens v2.1.0
π your project is using an outdated version of polaris-tokens and would benefit from this accessibility fix. Updating to 2.1.1 is warmly recommended π
- Shopify/online-store-web (cc @Shopify/online-store-web)
- Shopify/polaris-extended-styleguide (cc @tmlayton)
- Shopify/android (cc @Shopify/mobile-foundations-android)
- Shopify/ios (cc @Shopify/mobile-foundations-ios)
Upgrade instructions from v1
- CSS: remove
-base
. For example:var(--color-ink-base)
βvar(--color-ink)
. - Sass: remove
-base
. For example:$color-ink-base
β$color-ink
. - JSON: remove
-base
. For example:tokens['color-ink-base']
βtokens['color-ink']
. - Android: remove
_base
. For example:polaris_color_blue_base
βpolaris_color_blue
. - JavaScript: remove
Base
. For example:colorPurpleBase
βcolorPurple
.
Thanks @kaelig
Question would the iOS upgrade instructions be the same as Android or another of the cases you listed above:
#42 (comment)
never mind I see Dan already created an issue for us on iOS!