Skip to content

Commit 58b4ebc

Browse files
committed
Auto merge of #115700 - GuillaumeGomez:migrate-gui-test-color-39, r=notriddle
Migrate GUI colors test to original CSS color format Follow-up of #111459. r? `@notriddle`
2 parents bfcc360 + a0aa59c commit 58b4ebc

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/rustdoc-gui/help-page.goml

+9-9
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ define-function: (
3333

3434
call-function: ("check-colors", {
3535
"theme": "ayu",
36-
"color": "rgb(197, 197, 197)",
37-
"background": "rgb(49, 69, 89)",
38-
"box_shadow": "rgb(92, 103, 115)",
36+
"color": "#c5c5c5",
37+
"background": "#314559",
38+
"box_shadow": "#5c6773",
3939
})
4040
call-function: ("check-colors", {
4141
"theme": "dark",
42-
"color": "rgb(0, 0, 0)",
43-
"background": "rgb(250, 251, 252)",
44-
"box_shadow": "rgb(198, 203, 209)",
42+
"color": "#000",
43+
"background": "#fafbfc",
44+
"box_shadow": "#c6cbd1",
4545
})
4646
call-function: ("check-colors", {
4747
"theme": "light",
48-
"color": "rgb(0, 0, 0)",
49-
"background": "rgb(250, 251, 252)",
50-
"box_shadow": "rgb(198, 203, 209)",
48+
"color": "#000",
49+
"background": "#fafbfc",
50+
"box_shadow": "#c6cbd1",
5151
})
5252

5353
// This test ensures that opening the help popover without switching pages works.

0 commit comments

Comments
 (0)