Skip to content

Commit

Permalink
Migrate GUI colors test to original CSS color format
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Sep 3, 2023
1 parent 7e648f0 commit 8e5dff1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/rustdoc-gui/code-color.goml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ define-function: (

call-function: ("check-colors", {
"theme": "ayu",
"doc_code_color": "rgb(230, 225, 207)",
"doc_inline_code_color": "rgb(255, 180, 84)",
"doc_code_color": "#e6e1cf",
"doc_inline_code_color": "#ffb454",
})
call-function: ("check-colors", {
"theme": "dark",
"doc_code_color": "rgb(221, 221, 221)",
"doc_inline_code_color": "rgb(221, 221, 221)",
"doc_code_color": "#ddd",
"doc_inline_code_color": "#ddd",
})
call-function: ("check-colors", {
"theme": "light",
"doc_code_color": "rgb(0, 0, 0)",
"doc_inline_code_color": "rgb(0, 0, 0)",
"doc_code_color": "black",
"doc_inline_code_color": "black",
})

0 comments on commit 8e5dff1

Please sign in to comment.