pialarm/include/theme.h
jmug 2feeddc1be Functional mode switch that flips the theme on click.
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2025-04-25 17:18:53 -07:00

19 lines
315 B
C

#pragma once
#include "clay.h"
enum Theme_Mode {
LIGHT_MODE,
DARK_MODE,
};
struct Theme_t {
Clay_Color backgroundColor;
Clay_Color foregroundColor;
Clay_Color textColor;
Clay_Color textShadowColor;
};
void setThemeMode(enum Theme_Mode m);
enum Theme_Mode getThemeMode();
struct Theme_t getCurrentTheme();