This commit is contained in:
dmitry-erin 2024-04-22 05:11:55 +01:00 committed by GitHub
commit d298311a32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 207 additions and 102 deletions

View file

@ -142,4 +142,13 @@ void theme_init(struct theme *theme, const char *theme_name);
*/
void theme_finish(struct theme *theme);
void theme_parse_hexstr(const char *hex, float *rgba);
/**
* get_theme_for_view - get theme with check for custom color
* @view: view data
* @return: theme struct with color customization
*/
struct theme get_theme_for_view(struct view *view);
#endif /* LABWC_THEME_H */