From 92caa6344f71f3681ed255b56ecfa9294f497ab9 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 27 Jan 2022 18:46:46 -0500 Subject: tk: Add border with focus indication to button --- (limited to 'src/tk/style.h') diff --git a/src/tk/style.h b/src/tk/style.h index 14a1ea4..a8ff76f 100644 --- a/src/tk/style.h +++ b/src/tk/style.h @@ -32,6 +32,14 @@ #define MFTK_COLOR_BACK_G 0xAF #define MFTK_COLOR_BACK_B 0xAF #define MFTK_COLOR_BACK_A 0xFF +#define MFTK_COLOR_BDRN_R 0x00 /* Widget normal border color */ +#define MFTK_COLOR_BDRN_G 0x00 +#define MFTK_COLOR_BDRN_B 0x00 +#define MFTK_COLOR_BDRN_A 0xFF +#define MFTK_COLOR_BDRF_R 0x00 /* Widget focus border color */ +#define MFTK_COLOR_BDRF_G 0x00 +#define MFTK_COLOR_BDRF_B 0xAF +#define MFTK_COLOR_BDRF_A 0xFF #define MFTK_COLOR_FORE_R 0x00 /* Text color */ #define MFTK_COLOR_FORE_G 0x00 #define MFTK_COLOR_FORE_B 0x00 -- cgit v0.9.1