Migrate GUI colors test to original CSS color format

This commit is contained in:
Guillaume Gomez 2023-08-08 16:55:28 +02:00
parent 08ca8246f8
commit 381ef83240

View File

@ -46,53 +46,53 @@ call-function: (
"check-colors", "check-colors",
{ {
"theme": "ayu", "theme": "ayu",
"mod": "rgb(57, 175, 215)", "mod": "#39afd7",
"macro": "rgb(163, 122, 204)", "macro": "#a37acc",
"struct": "rgb(255, 160, 165)", "struct": "#ffa0a5",
"enum": "rgb(255, 160, 165)", "enum": "#ffa0a5",
"trait": "rgb(57, 175, 215)", "trait": "#39afd7",
"fn": "rgb(253, 214, 135)", "fn": "#fdd687",
"type": "rgb(255, 160, 165)", "type": "#ffa0a5",
"union": "rgb(255, 160, 165)", "union": "#ffa0a5",
"keyword": "rgb(57, 175, 215)", "keyword": "#39afd7",
"sidebar": "rgb(83, 177, 219)", "sidebar": "#53b1db",
"sidebar_current": "rgb(255, 180, 76)", "sidebar_current": "#ffb44c",
"sidebar_current_background": "rgba(0, 0, 0, 0)", "sidebar_current_background": "transparent",
}, },
) )
call-function: ( call-function: (
"check-colors", "check-colors",
{ {
"theme": "dark", "theme": "dark",
"mod": "rgb(210, 153, 29)", "mod": "#d2991d",
"macro": "rgb(9, 189, 0)", "macro": "#09bd00",
"struct": "rgb(45, 191, 184)", "struct": "#2dbfb8",
"enum": "rgb(45, 191, 184)", "enum": "#2dbfb8",
"trait": "rgb(183, 140, 242)", "trait": "#b78cf2",
"fn": "rgb(43, 171, 99)", "fn": "#2bab63",
"type": "rgb(45, 191, 184)", "type": "#2dbfb8",
"union": "rgb(45, 191, 184)", "union": "#2dbfb8",
"keyword": "rgb(210, 153, 29)", "keyword": "#d2991d",
"sidebar": "rgb(253, 191, 53)", "sidebar": "#fdbf35",
"sidebar_current": "rgb(253, 191, 53)", "sidebar_current": "#fdbf35",
"sidebar_current_background": "rgb(68, 68, 68)", "sidebar_current_background": "#444",
}, },
) )
call-function: ( call-function: (
"check-colors", "check-colors",
{ {
"theme": "light", "theme": "light",
"mod": "rgb(56, 115, 173)", "mod": "#3873ad",
"macro": "rgb(6, 128, 0)", "macro": "#068000",
"struct": "rgb(173, 55, 138)", "struct": "#ad378a",
"enum": "rgb(173, 55, 138)", "enum": "#ad378a",
"trait": "rgb(110, 79, 201)", "trait": "#6e4fc9",
"fn": "rgb(173, 124, 55)", "fn": "#ad7c37",
"type": "rgb(173, 55, 138)", "type": "#ad378a",
"union": "rgb(173, 55, 138)", "union": "#ad378a",
"keyword": "rgb(56, 115, 173)", "keyword": "#3873ad",
"sidebar": "rgb(53, 109, 164)", "sidebar": "#356da4",
"sidebar_current": "rgb(53, 109, 164)", "sidebar_current": "#356da4",
"sidebar_current_background": "rgb(255, 255, 255)", "sidebar_current_background": "#fff",
}, },
) )