From 3b5ee67114bf789c93db23b7a3611302dce7142e Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Mon, 29 May 2023 16:44:50 +0200 Subject: Add initial theming support --- src/globals.c | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'src/globals.c') diff --git a/src/globals.c b/src/globals.c index 7396968..7ad5e5a 100644 --- a/src/globals.c +++ b/src/globals.c @@ -23,18 +23,12 @@ bool clear_screen = true; // Color indexes. // -#define COL_BG 0 -#define COL_FG 1 -#define COL_RED 2 -#define COL_BLUE 3 -#define COL_CYAN 4 -#define COL_GREY 5 - -// Theme colors. -#define COL_CURSOR COL_BLUE -#define COL_NOTE_PRESSED COL_GREY -#define COL_WAVE_A COL_RED -#define COL_WAVE_B COL_CYAN +#define COL_BG 0 +#define COL_FG 1 +#define COL_ACC_0 2 +#define COL_ACC_1 3 +#define COL_ACC_2 4 +#define COL_OFF 5 #define CHAN_W 19 #define CHAN_H 8 -- cgit v1.2.1