Rollup merge of #113023 - GuillaumeGomez:migrate-gui-test-color-17, 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:
Matthias Krüger 2023-06-25 13:48:37 +02:00 committed by GitHub
commit d2f82a00d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -37,15 +37,15 @@ define-function: (
) )
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "ayu", "theme": "ayu",
"color": "rgb(92, 103, 115)", "color": "#5c6773",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "dark", "theme": "dark",
"color": "rgb(59, 145, 226)", "color": "#3b91e2",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "light", "theme": "light",
"color": "rgb(198, 126, 45)", "color": "#c67e2d",
}) })
// The first code block has two lines so let's check its `<pre>` elements lists both of them. // The first code block has two lines so let's check its `<pre>` elements lists both of them.