Skip to content

Commit 8e5dff1

Browse files
Migrate GUI colors test to original CSS color format
1 parent 7e648f0 commit 8e5dff1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/rustdoc-gui/code-color.goml

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ define-function: (
2121

2222
call-function: ("check-colors", {
2323
"theme": "ayu",
24-
"doc_code_color": "rgb(230, 225, 207)",
25-
"doc_inline_code_color": "rgb(255, 180, 84)",
24+
"doc_code_color": "#e6e1cf",
25+
"doc_inline_code_color": "#ffb454",
2626
})
2727
call-function: ("check-colors", {
2828
"theme": "dark",
29-
"doc_code_color": "rgb(221, 221, 221)",
30-
"doc_inline_code_color": "rgb(221, 221, 221)",
29+
"doc_code_color": "#ddd",
30+
"doc_inline_code_color": "#ddd",
3131
})
3232
call-function: ("check-colors", {
3333
"theme": "light",
34-
"doc_code_color": "rgb(0, 0, 0)",
35-
"doc_inline_code_color": "rgb(0, 0, 0)",
34+
"doc_code_color": "black",
35+
"doc_inline_code_color": "black",
3636
})

0 commit comments

Comments
 (0)