green progress bar if have all

This commit is contained in:
Green Sky
2025-02-06 23:16:14 +01:00
parent bfbeafddf7
commit c7367a6a4d
4 changed files with 20 additions and 7 deletions

View File

@ -18,6 +18,8 @@ enum class ThemeCol_Contact {
unread_muted,
icon_backdrop,
ft_have_all,
};
void renderAvatar(

View File

@ -53,6 +53,9 @@ Theme getDefaultThemeDark(void) {
t.setColor<ThemeCol_Contact::icon_backdrop >({0.0f, 0.0f, 0.0f, 0.4f});
// TODO: add base ft? -> PlotHistogram
t.setColor<ThemeCol_Contact::ft_have_all >({0.35f, 0.84f, 0.22f, 1.0f});
return t;
}