From 3574e3cbf9d99546e868aeb995ce2c171cdc36a6 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Mon, 28 Mar 2022 12:23:55 -0400 Subject: Add bliss theme --- themes/bliss.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 themes/bliss.h diff --git a/themes/bliss.h b/themes/bliss.h new file mode 100644 index 0000000..11cdfaa --- /dev/null +++ b/themes/bliss.h @@ -0,0 +1,13 @@ +/* newsboat-like (blue, yellow) */ +#define THEME_ITEM_NORMAL() do { ttywrite("\x1b[36m"); } while(0) +#define THEME_ITEM_FOCUS() do { } while(0) +#define THEME_ITEM_BOLD() do { attrmode(ATTR_BOLD_ON); } while(0) +#define THEME_ITEM_SELECTED() do { if (p->focused) ttywrite("\x1b[30;46;1m"); } while(0) /* bright yellow fg, blue bg */ +#define THEME_SCROLLBAR_FOCUS() do { ttywrite("\x1b[34m"); } while(0) /* blue fg */ +#define THEME_SCROLLBAR_NORMAL() do { ttywrite("\x1b[34m"); } while(0) +#define THEME_SCROLLBAR_TICK_FOCUS() do { ttywrite("\x1b[45m"); } while(0) /* blue bg */ +#define THEME_SCROLLBAR_TICK_NORMAL() do { ttywrite("\x1b[44m"); } while(0) +#define THEME_LINEBAR() do { ttywrite("\x1b[34m"); } while(0) +#define THEME_STATUSBAR() do { attrmode(ATTR_BOLD_ON); ttywrite("\x1b[32m"); } while(0) +#define THEME_INPUT_LABEL() do { } while(0) +#define THEME_INPUT_NORMAL() do { } while(0) -- cgit v1.2.3