about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2023-08-04 19:42:56 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2023-08-04 19:45:32 +0200
commit85ed2feb67556c3cece64aacc5abaf35ecfed93a (patch)
treeaf68581123e66253cd7f7ef460ed56562b9d2fe5
parentb2a6b99aa3dce16de9f0cdf50e4578b70e96fd06 (diff)
downloadrust-85ed2feb67556c3cece64aacc5abaf35ecfed93a.tar.gz
rust-85ed2feb67556c3cece64aacc5abaf35ecfed93a.zip
Migrate GUI colors test to original CSS color format
-rw-r--r--tests/rustdoc-gui/run-on-hover.goml12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/rustdoc-gui/run-on-hover.goml b/tests/rustdoc-gui/run-on-hover.goml
index b5fc49eacac..1f87febcec6 100644
--- a/tests/rustdoc-gui/run-on-hover.goml
+++ b/tests/rustdoc-gui/run-on-hover.goml
@@ -33,22 +33,22 @@ define-function: (
 
 call-function: ("check-run-button", {
     "theme": "ayu",
-    "color": "rgb(120, 135, 151)",
+    "color": "#788797",
     "background": "rgba(57, 175, 215, 0.09)",
-    "hover_color": "rgb(197, 197, 197)",
+    "hover_color": "#c5c5c5",
     "hover_background": "rgba(57, 175, 215, 0.37)",
 })
 call-function: ("check-run-button", {
     "theme": "dark",
-    "color": "rgb(222, 222, 222)",
+    "color": "#dedede",
     "background": "rgba(78, 139, 202, 0.2)",
-    "hover_color": "rgb(222, 222, 222)",
+    "hover_color": "#dedede",
     "hover_background": "rgb(78, 139, 202)",
 })
 call-function: ("check-run-button", {
     "theme": "light",
-    "color": "rgb(245, 245, 245)",
+    "color": "#f5f5f5",
     "background": "rgba(78, 139, 202, 0.2)",
-    "hover_color": "rgb(245, 245, 245)",
+    "hover_color": "#f5f5f5",
     "hover_background": "rgb(78, 139, 202)",
 })