Migrate GUI colors test to original CSS color format

This commit is contained in:
Guillaume Gomez 2023-08-20 14:44:36 +02:00
parent 03a3d24a11
commit f2f999e7b2

View File

@ -36,17 +36,17 @@ define-function: (
) )
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "dark", "theme": "ayu",
"border_color": "rgb(224, 224, 224)", "border_color": "#5c6773",
"zebra_stripe_color": "rgb(42, 42, 42)", "zebra_stripe_color": "#191f26",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "ayu", "theme": "dark",
"border_color": "rgb(92, 103, 115)", "border_color": "#e0e0e0",
"zebra_stripe_color": "rgb(25, 31, 38)", "zebra_stripe_color": "#2a2a2a",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "light", "theme": "light",
"border_color": "rgb(224, 224, 224)", "border_color": "#e0e0e0",
"zebra_stripe_color": "rgb(245, 245, 245)", "zebra_stripe_color": "#f5f5f5",
}) })