diff options
| author | bors <bors@rust-lang.org> | 2023-08-21 01:45:40 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-08-21 01:45:40 +0000 |
| commit | 8a562f9671e36cf29c9c794c2646bcf252d55535 (patch) | |
| tree | 0a173017f1ba06fb698fe3e5ef2d9ee0bcdb5d1a | |
| parent | c60ff10ffd781733fead9d350aacb14902f8a34e (diff) | |
| parent | f2f999e7b21bdcf41d5c335f98cc06067cb626a6 (diff) | |
Auto merge of #115023 - GuillaumeGomez:migrate-gui-test-color-35, 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/docblock-table.goml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/rustdoc-gui/docblock-table.goml b/tests/rustdoc-gui/docblock-table.goml index 011451ef4f3..678b302f22e 100644 --- a/tests/rustdoc-gui/docblock-table.goml +++ b/tests/rustdoc-gui/docblock-table.goml @@ -36,17 +36,17 @@ define-function: ( ) call-function: ("check-colors", { - "theme": "dark", - "border_color": "rgb(224, 224, 224)", - "zebra_stripe_color": "rgb(42, 42, 42)", + "theme": "ayu", + "border_color": "#5c6773", + "zebra_stripe_color": "#191f26", }) call-function: ("check-colors", { - "theme": "ayu", - "border_color": "rgb(92, 103, 115)", - "zebra_stripe_color": "rgb(25, 31, 38)", + "theme": "dark", + "border_color": "#e0e0e0", + "zebra_stripe_color": "#2a2a2a", }) call-function: ("check-colors", { "theme": "light", - "border_color": "rgb(224, 224, 224)", - "zebra_stripe_color": "rgb(245, 245, 245)", + "border_color": "#e0e0e0", + "zebra_stripe_color": "#f5f5f5", }) |
