mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
16 lines
284 B
C
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 */
|