labwc/include/theme.h
2020-06-12 21:41:30 +01:00

16 lines
284 B
C

#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];
};
extern struct theme theme;
void theme_read(const char *filename);
#endif /* THEME_H */