Text fails to meet minimum requirement contrast ratio (4.5:1) with background for regular text. Impact on Users: This will impact low vision users. People with low vision often have difficulty reading text that does not contrast with its background. This can be exacerbated if the person has a color vision deficiency that lowers the contrast even further. This problem is located at Settings window on the left side list elements. The list of elements has a contrast ratio 3.2:1 that is less than 4.5:1 for the minimum ratio requirement. And in the “Dark” settings of Theme, the contrast ratio is just below 4.5:1. #489
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
name: Add extension and linting labels to associated opened issues | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
label_extension_linting_issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Label Extension Issues | |
uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90 # tag=1 | |
if: contains(toJson(github.event.issue.body), '### Product\n\naxe Extension\n\n') | |
with: | |
add-labels: 'extension' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Label Linting Issues | |
uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90 # tag=1 | |
if: contains(toJson(github.event.issue.body), '### Product\n\naxe Linter\n\n') | |
with: | |
add-labels: 'linting' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |