NeoMutt  2025-09-05-43-g177ed6
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
merged.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_COLOR_MERGED_H
24#define MUTT_COLOR_MERGED_H
25
26#include "config.h"
27
28struct AttrColor;
29
30const struct AttrColor * merged_color_overlay(const struct AttrColor *base, const struct AttrColor *over);
31
32void merged_colors_cleanup(void);
33void merged_colors_init(void);
34
35#endif /* MUTT_COLOR_MERGED_H */
void merged_colors_cleanup(void)
Free the list of Merged colours.
Definition merged.c:52
void merged_colors_init(void)
Initialise the Merged colours.
Definition merged.c:44
const struct AttrColor * merged_color_overlay(const struct AttrColor *base, const struct AttrColor *over)
Combine two colours.
Definition merged.c:107
A curses colour and its attributes.
Definition attr.h:66