Skip to content

Commit

Permalink
Auto merge of rust-lang#115023 - GuillaumeGomez:migrate-gui-test-colo…
Browse files Browse the repository at this point in the history
…r-35, r=notriddle

Migrate GUI colors test to original CSS color format

Follow-up of rust-lang#111459.

r? `@notriddle`
  • Loading branch information
bors committed Aug 21, 2023
2 parents c60ff10 + f2f999e commit 8a562f9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/rustdoc-gui/docblock-table.goml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
})

0 comments on commit 8a562f9

Please sign in to comment.