We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
code-color.goml
1 parent 7cc5ac2 commit 7e648f0Copy full SHA for 7e648f0
tests/rustdoc-gui/code-color.goml
@@ -19,6 +19,18 @@ define-function: (
19
},
20
)
21
22
-call-function: ("check-colors", ("ayu", "rgb(230, 225, 207)", "rgb(255, 180, 84)"))
23
-call-function: ("check-colors", ("dark", "rgb(221, 221, 221)", "rgb(221, 221, 221)"))
24
-call-function: ("check-colors", ("light", "rgb(0, 0, 0)", "rgb(0, 0, 0)"))
+call-function: ("check-colors", {
+ "theme": "ayu",
+ "doc_code_color": "rgb(230, 225, 207)",
25
+ "doc_inline_code_color": "rgb(255, 180, 84)",
26
+})
27
28
+ "theme": "dark",
29
+ "doc_code_color": "rgb(221, 221, 221)",
30
+ "doc_inline_code_color": "rgb(221, 221, 221)",
31
32
33
+ "theme": "light",
34
+ "doc_code_color": "rgb(0, 0, 0)",
35
+ "doc_inline_code_color": "rgb(0, 0, 0)",
36
0 commit comments