diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-05-21 16:03:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-21 16:03:00 +0200 |
| commit | 0afa79b53d836a53081404acb076715a7e9c92d2 (patch) | |
| tree | 121b1c1c7683a5deb83b0755e262a65f42cd7954 | |
| parent | 6ccc3de9984d938dfd4bf0d6a1c64ad213d1fdd4 (diff) | |
| parent | 8b7c8e1f8275ed2d8db202a07d61a818e75a441d (diff) | |
| download | rust-0afa79b53d836a53081404acb076715a7e9c92d2.tar.gz rust-0afa79b53d836a53081404acb076715a7e9c92d2.zip | |
Rollup merge of #111797 - GuillaumeGomez:migrate-gui-test-color-2, 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/codeblock-tooltip.goml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/rustdoc-gui/codeblock-tooltip.goml b/tests/rustdoc-gui/codeblock-tooltip.goml index 2ed0579d314..e1c81ed79e4 100644 --- a/tests/rustdoc-gui/codeblock-tooltip.goml +++ b/tests/rustdoc-gui/codeblock-tooltip.goml @@ -109,19 +109,19 @@ define-function: ( call-function: ("check-colors", { "theme": "ayu", - "background": "rgb(15, 20, 25)", - "color": "rgb(197, 197, 197)", - "border": "rgb(92, 103, 115)", + "background": "#0f1419", + "color": "#c5c5c5", + "border": "#5c6773", }) call-function: ("check-colors", { "theme": "dark", - "background": "rgb(53, 53, 53)", - "color": "rgb(221, 221, 221)", - "border": "rgb(224, 224, 224)", + "background": "#353535", + "color": "#ddd", + "border": "#e0e0e0", }) call-function: ("check-colors", { "theme": "light", - "background": "rgb(255, 255, 255)", - "color": "rgb(0, 0, 0)", - "border": "rgb(224, 224, 224)", + "background": "white", + "color": "black", + "border": "#e0e0e0", }) |
