diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-05-24 21:36:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-24 21:36:58 +0200 |
| commit | 0cc987fae2e4f39edb3dfe3384f03cf22824f41a (patch) | |
| tree | 73a17e698f91bfffc5b00f8aed31d9b3a80171a6 | |
| parent | 680f8b8efe758678cd9ca252012ee18ec7a19c4a (diff) | |
| parent | 0a7293ff00c98b37be4ca257170d7ead5cf838d3 (diff) | |
| download | rust-0cc987fae2e4f39edb3dfe3384f03cf22824f41a.tar.gz rust-0cc987fae2e4f39edb3dfe3384f03cf22824f41a.zip | |
Rollup merge of #111903 - GuillaumeGomez:migrate-gui-test-color-6, r=notriddle
Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. r? `@notriddle`
| -rw-r--r-- | tests/rustdoc-gui/stab-badge.goml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/rustdoc-gui/stab-badge.goml b/tests/rustdoc-gui/stab-badge.goml index e2340418871..bb3d2aaa3dc 100644 --- a/tests/rustdoc-gui/stab-badge.goml +++ b/tests/rustdoc-gui/stab-badge.goml @@ -26,16 +26,16 @@ define-function: ( call-function: ("check-badge", { "theme": "ayu", - "color": "rgb(197, 197, 197)", - "background": "rgb(49, 69, 89)", + "color": "#c5c5c5", + "background": "#314559", }) call-function: ("check-badge", { "theme": "dark", - "color": "rgb(221, 221, 221)", - "background": "rgb(49, 69, 89)", + "color": "#ddd", + "background": "#314559", }) call-function: ("check-badge", { "theme": "light", - "color": "rgb(0, 0, 0)", - "background": "rgb(255, 245, 214)", + "color": "black", + "background": "#fff5d6", }) |
