1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Add 256 colour info to /theme colours

This commit is contained in:
Michael Vetter 2019-08-23 14:08:00 +02:00
parent 56c77678f2
commit 42fb1935c4

View File

@ -2428,6 +2428,13 @@ cons_theme_colours(void)
win_print(console, THEME_BLACK, '-', " black ");
win_appendln(console, THEME_BLACK_BOLD, " bold_black");
if (COLORS >= 256) {
cons_show("Your terminal supports 256 colours.");
cons_show("But only basic colours are printed here.");
cons_show("To use them use their Xterm colour name.");
cons_show("See https://jonasjacek.github.io/colors/");
}
cons_show("");
}