diff --git a/.github/workflows/pull_request_packages.yml b/.github/workflows/pull_request_packages.yml index df469f09a08..f265ec8932b 100644 --- a/.github/workflows/pull_request_packages.yml +++ b/.github/workflows/pull_request_packages.yml @@ -127,6 +127,20 @@ jobs: path: playwright-report retention-days: 30 + - name: Download @axe-core/playwright HTML report from GitHub Actions Artifacts + uses: actions/download-artifact@v3 + with: + name: axe-report + path: axe-report + + - name: Upload @axe-core/playwright HTML report to GitHub Actions Artifacts + uses: actions/upload-artifact@v3 + if: always() + with: + name: axe-report + path: axe-report + retention-days: 30 + analyze_bundle_size: if: ${{ needs.changed_files.outputs.package_vkui == 'true' }} needs: changed_files @@ -224,3 +238,15 @@ jobs: uses: ./.github/workflows/reusable_workflow_pr_worfklow_payload.yml with: action: upload + + # check_a11y: + # needs: [test, test_e2e_prepare_and_upload_report, docs_styleguide_upload, docs_storybook_upload] + # # Не используем always(), т.к. он не учитывает отмену воркфлоу + # # см. https://github.com/orgs/community/discussions/26303 + # if: ${{ !cancelled() }} + # steps: + # - name: Fail if a11y has deteriorated + # if: ${{ needs.a11y_violations.outputs.HEAD > needs.a11y_violations.outputs.BASE }} + # run: | + # echo "::error file=packages/vkui/src/index.ts,line=1::VKUI a11y has decreased" + # exit 1 diff --git a/.github/workflows/pull_request_packages_deploy.yml b/.github/workflows/pull_request_packages_deploy.yml index d8b34c4aaef..d0d05857721 100644 --- a/.github/workflows/pull_request_packages_deploy.yml +++ b/.github/workflows/pull_request_packages_deploy.yml @@ -184,3 +184,115 @@ jobs: Commit ${{ env.PR_HEAD_SHA }} edit-mode: replace + + deploy_a11y_report: + needs: [pr_workflow_payload] + if: ${{ needs.pr_workflow_payload.outputs.status == 'success' }} + runs-on: ubuntu-latest + name: Deploy @axe-core/playwright HTML report + outputs: + url: ${{ steps.url.outputs.value }} + steps: + - name: Download @axe-core/playwright HTML report from GitHub Actions Artifacts + id: artifact + uses: VKCOM/gh-actions/shared/download-workflow-artifact@main + with: + name: axe-report + path: axe-report + + - name: Deploy @axe-core/playwright HTML report + if: ${{ steps.artifact.outputs.found_artifact == 'true' }} + id: deploy + uses: VKCOM/gh-actions/VKUI/s3@main + with: + awsAccessKeyId: ${{ secrets.AWS_ACCESS_KEY_ID }} + awsSecretAccessKey: ${{ secrets.AWS_SECRET_KEY }} + awsBucket: ${{ vars.AWS_BUCKET }} + awsEndpoint: https://${{ vars.AWS_ENDPOINT }} + command: upload + commandUploadSrc: axe-report/ + commandUploadDist: pull/${{ needs.pr_workflow_payload.outputs.pr_number }}/${{ env.PR_HEAD_SHA }}/axe-report + + - name: Create @axe-core/playwright HTML report url + if: ${{ steps.deploy.outcome == 'success' }} + id: url + run: echo "value=${{ env.AWS_S3_URL }}/pull/${{ needs.pr_workflow_payload.outputs.pr_number }}/${{ env.PR_HEAD_SHA }}/axe-report/index.html" >> $GITHUB_OUTPUT + + a11y_report_comment: + needs: [deploy_a11y_report, pr_workflow_payload] + if: ${{ needs.deploy_a11y_report.outputs.url != '' }} + runs-on: ubuntu-latest + name: a11y report comment + steps: + - name: Download @axe-core/playwright json report from GitHub Actions Artifacts + uses: actions/download-artifact@v3 + with: + name: a11y-output + path: a11y-output + + - name: Get number of a11y violations for BASE and HEAD from @axe-core/playwright json report + id: get_violations + run: | + basejson=`cat packages/vkui/a11y-results.json` + headjson=`cat a11y-output/a11y-results.json` + echo "BASE=$(jq -r '.count' <<< $basejson)" >> $GITHUB_OUTPUT + echo "HEAD=$(jq -r '.count' <<< $headjson)" >> $GITHUB_OUTPUT + + - name: Find Axe Report URL comment + uses: peter-evans/find-comment@v2 + id: find_url_comment + with: + issue-number: ${{ needs.pr_workflow_payload.outputs.pr_number }} + comment-author: 'github-actions[bot]' + body-includes: + + - name: stable a11y — Create or update @axe-core/playwright HTML report comment + if: ${{ steps.get_violations.outputs.HEAD == steps.get_violations.outputs.BASE }} + uses: peter-evans/create-or-update-comment@v3 + with: + comment-id: ${{ steps.find_url_comment.outputs.comment-id }} + issue-number: ${{ github.event.pull_request.number }} + body: | + + ## ♿ `@axe-core/playwright` Report + + ### 👌 This PR does not affect accessibility 👌 + + > There are ${{ steps.get_violations.outputs.HEAD }} violations on ${{ env.PR_HEAD_SHA }} compared to ${{ steps.get_violations.outputs.BASE }} violations in `a11y-results.json`. + + See full [Axe Accessibility Report](${{ needs.deploy_a11y_report.outputs.url }}) + edit-mode: replace + + - name: improved a11y — Create or update @axe-core/playwright HTML report + if: ${{ steps.get_violations.outputs.HEAD < steps.get_violations.outputs.BASE }} + uses: peter-evans/create-or-update-comment@v3 + with: + comment-id: ${{ steps.find_url_comment.outputs.comment-id }} + issue-number: ${{ github.event.pull_request.number }} + body: | + + ## ♿ `@axe-core/playwright` Report + + ### 🎉 Hooray! This PR improves accessibility! 🎉 + + > There are ${{ steps.get_violations.outputs.HEAD }} violations on ${{ env.PR_HEAD_SHA }} compared to ${{ steps.get_violations.outputs.BASE }} violations in `a11y-results.json`. + + See full [Axe Accessibility Report](${{ needs.deploy_a11y_report.outputs.url }}) + edit-mode: replace + + - name: deteriorated a11y — Create or update @axe-core/playwright HTML report + if: ${{ steps.get_violations.outputs.HEAD > steps.get_violations.outputs.BASE }} + uses: peter-evans/create-or-update-comment@v3 + with: + comment-id: ${{ steps.find_url_comment.outputs.comment-id }} + issue-number: ${{ github.event.pull_request.number }} + body: | + + ## ♿ `@axe-core/playwright` Report + + ### 🚨 Attention! This PR deteriorates accessibility! 🚨 + + > There are ${{ steps.get_violations.outputs.HEAD }} violations on ${{ env.PR_HEAD_SHA }} compared to ${{ steps.get_violations.outputs.BASE }} violations + + See full [Axe Accessibility Report](${{ needs.deploy_a11y_report.outputs.url }}) + edit-mode: replace diff --git a/.github/workflows/reusable_workflow_test_e2e.yml b/.github/workflows/reusable_workflow_test_e2e.yml index 1ac12db489d..246d373982f 100644 --- a/.github/workflows/reusable_workflow_test_e2e.yml +++ b/.github/workflows/reusable_workflow_test_e2e.yml @@ -70,3 +70,11 @@ jobs: name: all-blob-reports path: packages/vkui/blob-report retention-days: 1 + + - name: Upload @axe-core/playwright json report to GitHub Actions Artifacts + uses: actions/upload-artifact@v3 + if: always() + with: + name: a11y-output + path: packages/vkui/a11y-results.json + retention-days: 1 diff --git a/.gitignore b/.gitignore index 827cf5e6043..12e926b2819 100644 --- a/.gitignore +++ b/.gitignore @@ -12,13 +12,13 @@ node_modules/ npm-debug.log stats.json test-results.json -a11y-results.json lint-results.json e2e-results.json yarn-error.log playwright-report/ blob-report/ all-blob-reports/ +axe-report/ # Caches .cache @@ -32,7 +32,6 @@ coverage # nyc test coverage .nyc_output -.nyc_a11y_output # Snapshot directory of Cypress Image Diff __diff_output__ diff --git a/packages/vkui/a11y-results.json b/packages/vkui/a11y-results.json new file mode 100644 index 00000000000..fa6cbd7055d --- /dev/null +++ b/packages/vkui/a11y-results.json @@ -0,0 +1,239716 @@ +{ + "count": 5986, + "violations": [ + { + "id": "color-contrast", + "impact": "serious", + "tags": [ + "cat.color", + "wcag2aa", + "wcag143", + "TTv5", + "TT13.c", + "EN-301-549", + "EN-9.1.4.3", + "ACT" + ], + "description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds", + "help": "Elements must meet minimum color contrast ratio thresholds", + "helpUrl": "https://dequeuniversity.com/rules/axe/4.8/color-contrast?application=playwright", + "nodes": [ + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который тоже не заканчивается
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который не обрезается (multiline)
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Meta прижата справа
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который тоже не заканчивается
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который не обрезается (multiline)
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Meta прижата справа
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который тоже не заканчивается
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который не обрезается (multiline)
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Meta прижата справа
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который тоже не заканчивается
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который не обрезается (multiline)
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Meta прижата справа
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#ffffff", + "bgColor": "#c0c0c0", + "contrastRatio": 1.81, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "button" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 1.81 (foreground color: #ffffff, background color: #c0c0c0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 1.81 (foreground color: #ffffff, background color: #c0c0c0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который тоже не заканчивается
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который не обрезается (multiline)
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Meta прижата справа
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который тоже не заканчивается
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который не обрезается (multiline)
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Meta прижата справа
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который тоже не заканчивается
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который не обрезается (multiline)
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Meta прижата справа
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Заголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который тоже не заканчивается
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок, который не обрезается (multiline)
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Есть подзаголовок
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_4rtbw_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Meta прижата справа
", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#ffffff", + "bgColor": "#c0c0c0", + "contrastRatio": 1.81, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "button" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 1.81 (foreground color: #ffffff, background color: #c0c0c0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-ios-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 1.81 (foreground color: #ffffff, background color: #c0c0c0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#ffffff", + "bgColor": "#4bb34b", + "contrastRatio": 2.67, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Показать все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Show more
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-small-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-small-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-small-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-small-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "
Все
", + "target": [ + "components-HorizontalCellShowMore-HorizontalCellShowMore.e2e.tsx-HorizontalCellShowMore-small-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы ", + "target": [ + "components-InfoRow-InfoRow.e2e.tsx-InfoRow-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы ", + "target": [ + "components-InfoRow-InfoRow.e2e.tsx-InfoRow-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы ", + "target": [ + "components-InfoRow-InfoRow.e2e.tsx-InfoRow-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы ", + "target": [ + "components-InfoRow-InfoRow.e2e.tsx-InfoRow-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Санкт-Петербург, Россия", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "vk.com/team", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы: Команда ВКонтакте", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Укажите место учёбы или работы", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Подробная информация", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Подробная информация", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Ячейка без иконки", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Санкт-Петербург, Россия", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "vk.com/team", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы: Команда ВКонтакте", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Укажите место учёбы или работы", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Подробная информация", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Подробная информация", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Ячейка без иконки", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-DESKTOP-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-DESKTOP-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-DESKTOP-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-DESKTOP-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-MOBILE-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-MOBILE-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-MOBILE-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-MOBILE-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_1jdvl_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "

The people you add as your friends will be displayed here

", + "target": [ + "components-Placeholder-Placeholder.e2e.tsx-Placeholder-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#ffffff", + "bgColor": "#2688eb", + "contrastRatio": 3.61, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "