Auto merge of #112524 - GuillaumeGomez:migrate-gui-test-color-14, r=notriddle

Migrate GUI colors test to original CSS color format

Follow-up of https://github.com/rust-lang/rust/pull/111459.

r? `@notriddle`
This commit is contained in:
bors 2023-06-13 00:35:32 +00:00
commit 5e8c53f1f6

View File

@ -42,29 +42,29 @@ call-function: (
"check-colors", "check-colors",
{ {
"theme": "ayu", "theme": "ayu",
"color": "rgb(197, 197, 197)", "color": "#c5c5c5",
"code_header_color": "rgb(230, 225, 207)", "code_header_color": "#e6e1cf",
"focus_background_color": "rgba(255, 236, 164, 0.06)", "focus_background_color": "rgba(255, 236, 164, 0.06)",
"headings_color": "rgb(57, 175, 215)", "headings_color": "#39afd7",
}, },
) )
call-function: ( call-function: (
"check-colors", "check-colors",
{ {
"theme": "dark", "theme": "dark",
"color": "rgb(221, 221, 221)", "color": "#ddd",
"code_header_color": "rgb(221, 221, 221)", "code_header_color": "#ddd",
"focus_background_color": "rgb(73, 74, 61)", "focus_background_color": "#494a3d",
"headings_color": "rgb(210, 153, 29)", "headings_color": "#d2991d",
}, },
) )
call-function: ( call-function: (
"check-colors", "check-colors",
{ {
"theme": "light", "theme": "light",
"color": "rgb(0, 0, 0)", "color": "black",
"code_header_color": "rgb(0, 0, 0)", "code_header_color": "black",
"focus_background_color": "rgb(253, 255, 211)", "focus_background_color": "#fdffd3",
"headings_color": "rgb(56, 115, 173)", "headings_color": "#3873ad",
}, },
) )