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 Aug 5, 2023
1 parent 67626b8 commit 9625fc5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/rustdoc-gui/scrape-examples-toggle.goml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ define-function: (

call-function: ("check-color", {
"theme": "ayu",
"toggle_line_color": "rgb(153, 153, 153)",
"toggle_line_hover_color": "rgb(197, 197, 197)",
"toggle_line_color": "#999",
"toggle_line_hover_color": "#c5c5c5",
})
call-function: ("check-color", {
"theme": "dark",
"toggle_line_color": "rgb(153, 153, 153)",
"toggle_line_hover_color": "rgb(197, 197, 197)",
"toggle_line_color": "#999",
"toggle_line_hover_color": "#c5c5c5",
})
call-function: ("check-color", {
"theme": "light",
"toggle_line_color": "rgb(204, 204, 204)",
"toggle_line_hover_color": "rgb(153, 153, 153)",
"toggle_line_color": "#ccc",
"toggle_line_hover_color": "#999",
})

// Toggling all docs will close additional examples
Expand Down

0 comments on commit 9625fc5

Please sign in to comment.