From 652c89c996f1447e64ccc61ceeaab3a80e7b404d Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Thu, 30 Apr 2026 23:24:58 +1200 Subject: Add theming! its 10:24pm and im sleepy --- include/saffron_theme.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 include/saffron_theme.h (limited to 'include/saffron_theme.h') diff --git a/include/saffron_theme.h b/include/saffron_theme.h new file mode 100644 index 0000000..1425a5d --- /dev/null +++ b/include/saffron_theme.h @@ -0,0 +1,25 @@ +#ifndef SAFFRON_THEME_H +#define SAFFRON_THEME_H + +#include + +typedef struct { + int r; + int g; + int b; + int a; +} SaffronColor; + +typedef struct { + SaffronColor bg; + SaffronColor fg; + SaffronColor primary; + SaffronColor secondary; + SaffronColor tertiary; +} SaffronTheme; + +extern const SaffronTheme SAFFRON_DEFAULT_THEME; + +#define SF_MACRO_DEFAULT_THEME ((SaffronTheme*)&SAFFRON_DEFAULT_THEME) + +#endif -- cgit v1.2.3