Skip to content

Commit 8b7c8e1

Browse files
Migrate GUI colors test to original CSS color format
1 parent 2d17294 commit 8b7c8e1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Diff for: tests/rustdoc-gui/codeblock-tooltip.goml

+9-9
Original file line numberDiff line numberDiff line change
@@ -109,19 +109,19 @@ define-function: (
109109

110110
call-function: ("check-colors", {
111111
"theme": "ayu",
112-
"background": "rgb(15, 20, 25)",
113-
"color": "rgb(197, 197, 197)",
114-
"border": "rgb(92, 103, 115)",
112+
"background": "#0f1419",
113+
"color": "#c5c5c5",
114+
"border": "#5c6773",
115115
})
116116
call-function: ("check-colors", {
117117
"theme": "dark",
118-
"background": "rgb(53, 53, 53)",
119-
"color": "rgb(221, 221, 221)",
120-
"border": "rgb(224, 224, 224)",
118+
"background": "#353535",
119+
"color": "#ddd",
120+
"border": "#e0e0e0",
121121
})
122122
call-function: ("check-colors", {
123123
"theme": "light",
124-
"background": "rgb(255, 255, 255)",
125-
"color": "rgb(0, 0, 0)",
126-
"border": "rgb(224, 224, 224)",
124+
"background": "white",
125+
"color": "black",
126+
"border": "#e0e0e0",
127127
})

0 commit comments

Comments
 (0)