feat: Add thumbnail named colors to Monet

This commit is contained in:
David Lapshin 2023-06-08 01:23:04 +03:00
parent b55eecbdb4
commit 893b3e0082
Signed by untrusted user: daudix
GPG key ID: 93ECF15D3053D81C

View file

@ -109,6 +109,8 @@ class Monet:
"card_bg_color": argb_to_color_code(light_theme.primary, "0.05"),
"card_fg_color": argb_to_color_code(light_theme.onSecondaryContainer),
"card_shade_color": argb_to_color_code(light_theme.shadow, "0.07"),
"thumbnail_bg_color": argb_to_color_code(light_theme.secondaryContainer),
"thumbnail_fg_color": argb_to_color_code(light_theme.onSecondaryContainer),
"dialog_bg_color": argb_to_color_code(light_theme.secondaryContainer),
"dialog_fg_color": argb_to_color_code(light_theme.onSecondaryContainer),
"popover_bg_color": argb_to_color_code(light_theme.secondaryContainer),
@ -148,6 +150,8 @@ class Monet:
"card_bg_color": argb_to_color_code(dark_theme.primary, "0.05"),
"card_fg_color": argb_to_color_code(dark_theme.onSecondaryContainer),
"card_shade_color": argb_to_color_code(dark_theme.shadow, "0.07"),
"thumbnail_bg_color": argb_to_color_code(dark_theme.secondaryContainer),
"thumbnail_fg_color": argb_to_color_code(dark_theme.onSecondaryContainer),
"dialog_bg_color": argb_to_color_code(dark_theme.secondaryContainer),
"dialog_fg_color": argb_to_color_code(dark_theme.onSecondaryContainer),
"popover_bg_color": argb_to_color_code(dark_theme.secondaryContainer),