Skip to content

Commit

Permalink
Rollup merge of rust-lang#111903 - GuillaumeGomez:migrate-gui-test-co…
Browse files Browse the repository at this point in the history
…lor-6, r=notriddle

Migrate GUI colors test to original CSS color format

Follow-up of rust-lang#111459.

r? `@notriddle`
  • Loading branch information
matthiaskrgr authored May 24, 2023
2 parents 680f8b8 + 0a7293f commit 0cc987f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/rustdoc-gui/stab-badge.goml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ define-function: (

call-function: ("check-badge", {
"theme": "ayu",
"color": "rgb(197, 197, 197)",
"background": "rgb(49, 69, 89)",
"color": "#c5c5c5",
"background": "#314559",
})
call-function: ("check-badge", {
"theme": "dark",
"color": "rgb(221, 221, 221)",
"background": "rgb(49, 69, 89)",
"color": "#ddd",
"background": "#314559",
})
call-function: ("check-badge", {
"theme": "light",
"color": "rgb(0, 0, 0)",
"background": "rgb(255, 245, 214)",
"color": "black",
"background": "#fff5d6",
})

0 comments on commit 0cc987f

Please sign in to comment.