labwc/include/theme.h

17 lines
284 B
C
Raw Normal View History

2020-06-11 21:20:43 +01:00
#ifndef THEME_H
#define THEME_H
#include <stdio.h>
struct theme {
float window_active_title_bg_color[4];
float window_active_handle_bg_color[4];
float window_inactive_title_bg_color[4];
2020-06-11 21:20:43 +01:00
};
extern struct theme theme;
void theme_read(const char *filename);
#endif /* THEME_H */