gui2/label: Add "bad" label variations

These are displayed in #FF0000 red currently.
This commit is contained in:
Iris Morelle 2021-06-18 20:26:45 -04:00
parent aadec0fe88
commit 4b40afe052
No known key found for this signature in database
GPG key ID: E312033F4023A753
2 changed files with 12 additions and 0 deletions

View file

@ -91,6 +91,16 @@
255 #endarg
{GUI__FONT_COLOR_DISABLED__DEFAULT ALPHA={ALPHA}} #enddef
#define GUI__FONT_COLOR_ENABLED__BAD
#arg ALPHA
255#endarg
"255, 0, 0, {ALPHA}" #enddef
#define GUI__FONT_COLOR_DISABLED__BAD
#arg ALPHA
255#endarg
"255, 0, 0, {ALPHA}" #enddef
# This color is used as background in the listbox.
#define GUI__BACKGROUND_COLOR_ENABLED
#arg ALPHA

View file

@ -114,6 +114,8 @@
{_GUI_DEFINITION "default_tiny" "default, small font size" () TINY () DEFAULT }
{_GUI_DEFINITION "gold" "regular gold label" () DEFAULT () TITLE }
{_GUI_DEFINITION "gold_small" "small gold label" () SMALL () TITLE }
{_GUI_DEFINITION "bad" "regular red label" () DEFAULT () BAD }
{_GUI_DEFINITION "bad_small" "small red label" () SMALL () BAD }
{_GUI_DEFINITION "monospace" "fixed width scroll label" monospace DEFAULT () DEFAULT }