labwc/tools/theme/theme-helper.c

15 lines
254 B
C
Raw Normal View History

2020-06-11 21:20:43 +01:00
#include <stdio.h>
#include <stdlib.h>
#include "../../include/theme.h"
struct theme theme = { 0 };
int main()
{
theme_read("../../data/themerc");
for (int i=0; i < 4; i++)
printf("%.2f; ", theme.window_active_title_bg_color[i]);
printf("\n");
}