Migrate GUI colors test to original CSS color format

This commit is contained in:
Guillaume Gomez 2023-09-09 11:20:03 +02:00
parent 6ec8d71f9b
commit a0aa59c934

View File

@ -33,21 +33,21 @@ define-function: (
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "ayu", "theme": "ayu",
"color": "rgb(197, 197, 197)", "color": "#c5c5c5",
"background": "rgb(49, 69, 89)", "background": "#314559",
"box_shadow": "rgb(92, 103, 115)", "box_shadow": "#5c6773",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "dark", "theme": "dark",
"color": "rgb(0, 0, 0)", "color": "#000",
"background": "rgb(250, 251, 252)", "background": "#fafbfc",
"box_shadow": "rgb(198, 203, 209)", "box_shadow": "#c6cbd1",
}) })
call-function: ("check-colors", { call-function: ("check-colors", {
"theme": "light", "theme": "light",
"color": "rgb(0, 0, 0)", "color": "#000",
"background": "rgb(250, 251, 252)", "background": "#fafbfc",
"box_shadow": "rgb(198, 203, 209)", "box_shadow": "#c6cbd1",
}) })
// This test ensures that opening the help popover without switching pages works. // This test ensures that opening the help popover without switching pages works.