diff options
Diffstat (limited to 'themes/mono_highlight.h')
-rw-r--r-- | themes/mono_highlight.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/mono_highlight.h b/themes/mono_highlight.h new file mode 100644 index 0000000..180f651 --- /dev/null +++ b/themes/mono_highlight.h @@ -0,0 +1,15 @@ +/* mono theme with highlighting of the active panel. + The faint attribute may not work on all terminals though. + The combination bold with faint generally does not work either. */ +#define THEME_ITEM_NORMAL() do { } while(0) +#define THEME_ITEM_FOCUS() do { } while(0) +#define THEME_ITEM_BOLD() do { if (p->focused || !selected) attrmode(ATTR_BOLD_ON); } while(0) +#define THEME_ITEM_SELECTED() do { attrmode(ATTR_REVERSE_ON); if (!p->focused) attrmode(ATTR_FAINT_ON); } while(0) +#define THEME_SCROLLBAR_FOCUS() do { } while(0) +#define THEME_SCROLLBAR_NORMAL() do { attrmode(ATTR_FAINT_ON); } while(0) +#define THEME_SCROLLBAR_TICK_FOCUS() do { attrmode(ATTR_REVERSE_ON); } while(0) +#define THEME_SCROLLBAR_TICK_NORMAL() do { attrmode(ATTR_REVERSE_ON); } while(0) +#define THEME_LINEBAR() do { attrmode(ATTR_FAINT_ON); } while(0) +#define THEME_STATUSBAR() do { attrmode(ATTR_REVERSE_ON); } while(0) +#define THEME_INPUT_LABEL() do { attrmode(ATTR_REVERSE_ON); } while(0) +#define THEME_INPUT_NORMAL() do { } while(0) |