Skip to content

Commit de9b9c8

Browse files
authored
Rollup merge of rust-lang#113482 - GuillaumeGomez:migrate-gui-test-color-20, r=notriddle
Migrate GUI colors test to original CSS color format Follow-up of rust-lang#111459. r? ``@notriddle``
2 parents dd83228 + 50b4d1f commit de9b9c8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/rustdoc-gui/sidebar-source-code.goml

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,24 @@ call-function: (
2525
"check-colors",
2626
{
2727
"theme": "ayu",
28-
"color": "rgb(197, 197, 197)",
29-
"background_color": "rgb(20, 25, 31)",
28+
"color": "#c5c5c5",
29+
"background_color": "#14191f",
3030
}
3131
)
3232
call-function: (
3333
"check-colors",
3434
{
3535
"theme": "dark",
36-
"color": "rgb(221, 221, 221)",
37-
"background_color": "rgb(80, 80, 80)",
36+
"color": "#ddd",
37+
"background_color": "#505050",
3838
}
3939
)
4040
call-function: (
4141
"check-colors",
4242
{
4343
"theme": "light",
44-
"color": "rgb(0, 0, 0)",
45-
"background_color": "rgb(245, 245, 245)",
44+
"color": "black",
45+
"background_color": "#F5F5F5",
4646
}
4747
)
4848

0 commit comments

Comments
 (0)