Migrate GUI colors test to original CSS color format

This commit is contained in:
Guillaume Gomez 2023-09-03 12:49:22 +02:00
parent 7e648f0d72
commit 8e5dff1d38

View File

@ -21,16 +21,16 @@ define-function: (
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "ayu", "theme": "ayu",
"doc_code_color": "rgb(230, 225, 207)", "doc_code_color": "#e6e1cf",
"doc_inline_code_color": "rgb(255, 180, 84)", "doc_inline_code_color": "#ffb454",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "dark", "theme": "dark",
"doc_code_color": "rgb(221, 221, 221)", "doc_code_color": "#ddd",
"doc_inline_code_color": "rgb(221, 221, 221)", "doc_inline_code_color": "#ddd",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "light", "theme": "light",
"doc_code_color": "rgb(0, 0, 0)", "doc_code_color": "black",
"doc_inline_code_color": "rgb(0, 0, 0)", "doc_inline_code_color": "black",
}) })