Symbol: VTermColor
src/apps/serialconnect/libvterm/include/vterm.h
201
void vterm_state_get_default_colors(const VTermState *state, VTermColor *default_fg, VTermColor *default_bg);
src/apps/serialconnect/libvterm/include/vterm.h
202
void vterm_state_get_palette_color(const VTermState *state, int index, VTermColor *col);
src/apps/serialconnect/libvterm/include/vterm.h
203
void vterm_state_set_default_colors(VTermState *state, const VTermColor *default_fg, const VTermColor *default_bg);
src/apps/serialconnect/libvterm/include/vterm.h
204
void vterm_state_set_palette_color(VTermState *state, int index, const VTermColor *col);
src/apps/serialconnect/libvterm/include/vterm.h
229
VTermColor fg, bg;
src/apps/serialconnect/libvterm/include/vterm.h
63
VTermColor color;
src/apps/serialconnect/libvterm/src/pen.c
121
static void setpenattr_col(VTermState *state, VTermAttr attr, VTermColor color)
src/apps/serialconnect/libvterm/src/pen.c
129
VTermColor *colp = (attr == VTERM_ATTR_BACKGROUND) ? &state->pen.bg : &state->pen.fg;
src/apps/serialconnect/libvterm/src/pen.c
183
void vterm_state_get_default_colors(const VTermState *state, VTermColor *default_fg, VTermColor *default_bg)
src/apps/serialconnect/libvterm/src/pen.c
189
void vterm_state_get_palette_color(const VTermState *state, int index, VTermColor *col)
src/apps/serialconnect/libvterm/src/pen.c
194
void vterm_state_set_default_colors(VTermState *state, const VTermColor *default_fg, const VTermColor *default_bg)
src/apps/serialconnect/libvterm/src/pen.c
200
void vterm_state_set_palette_color(VTermState *state, int index, const VTermColor *col)
src/apps/serialconnect/libvterm/src/pen.c
36
static void lookup_colour_ansi(const VTermState *state, long index, VTermColor *col)
src/apps/serialconnect/libvterm/src/pen.c
43
static void lookup_colour_palette(const VTermState *state, long index, VTermColor *col)
src/apps/serialconnect/libvterm/src/pen.c
5
static const VTermColor ansi_colors[] = {
src/apps/serialconnect/libvterm/src/pen.c
67
static int lookup_colour(const VTermState *state, int palette, const long args[], int argcount, VTermColor *col, int *index)
src/apps/serialconnect/libvterm/src/screen.c
16
VTermColor fg, bg;
src/apps/serialconnect/libvterm/src/vterm_internal.h
103
VTermColor default_fg;
src/apps/serialconnect/libvterm/src/vterm_internal.h
104
VTermColor default_bg;
src/apps/serialconnect/libvterm/src/vterm_internal.h
105
VTermColor colors[16]; // Store the 8 ANSI and the 8 ANSI high-brights only
src/apps/serialconnect/libvterm/src/vterm_internal.h
25
VTermColor fg;
src/apps/serialconnect/libvterm/src/vterm_internal.h
26
VTermColor bg;
src/apps/serialconnect/libvterm/src/vterm_internal.h
36
static inline int vterm_color_equal(VTermColor a, VTermColor b)