Migrate GUI colors test to original CSS color format

This commit is contained in:
Guillaume Gomez 2023-06-04 15:55:30 +02:00
parent 100db9946b
commit d67e00eb26
1 changed files with 6 additions and 6 deletions

View File

@ -73,16 +73,16 @@ define-function: (
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "ayu", "theme": "ayu",
"color": "rgb(197, 197, 197)", "color": "#c5c5c5",
"background": "rgb(20, 25, 31)", "background": "#14191f",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "dark", "theme": "dark",
"color": "rgb(221, 221, 221)", "color": "#ddd",
"background": "rgb(80, 80, 80)", "background": "#505050",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "light", "theme": "light",
"color": "rgb(0, 0, 0)", "color": "black",
"background": "rgb(245, 245, 245)", "background": "#F5F5F5",
}) })