aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-09-10 17:16:24 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-09-10 17:16:24 +0000
commit372a8cb1d9c4306f74b592660b4ce394dff3e31d (patch)
treef1f14875c69932859e6d65365a4742a6ee095652 /tmux.h
parent3f3b01c7ce503d98ab649fa4aecde741ce63cec0 (diff)
downloadrtmux-372a8cb1d9c4306f74b592660b4ce394dff3e31d.tar.gz
rtmux-372a8cb1d9c4306f74b592660b4ce394dff3e31d.tar.bz2
rtmux-372a8cb1d9c4306f74b592660b4ce394dff3e31d.zip
Permit options such as status-bg to be configured using the entire 256 colour
palette by setting "colour0" to "colour255".
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 7b725b00..a1b7fea2 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1486,7 +1486,9 @@ void input_key(struct window_pane *, int);
void input_mouse(struct window_pane *, u_char, u_char, u_char);
/* colour.c */
-const char *colour_tostring(u_char);
+void colour_set_fg(struct grid_cell *, int);
+void colour_set_bg(struct grid_cell *, int);
+const char *colour_tostring(int);
int colour_fromstring(const char *);
u_char colour_256to16(u_char);
u_char colour_256to88(u_char);