mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
15 lines
201 B
C
15 lines
201 B
C
|
|
#ifndef THEME_H
|
||
|
|
#define THEME_H
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
struct theme {
|
||
|
|
float window_active_title_bg_color[4];
|
||
|
|
};
|
||
|
|
|
||
|
|
extern struct theme theme;
|
||
|
|
|
||
|
|
void theme_read(const char *filename);
|
||
|
|
|
||
|
|
#endif /* THEME_H */
|