GUI2: removed unnecessary spaces and newlines from color macros

[ci skip]

Since these are usually used inline or as key values, we don't need the extra padding.
This commit is contained in:
Charles Dang 2018-04-30 22:20:40 +11:00
parent 604dcd8008
commit 7db83e3a0e

View file

@ -88,46 +88,39 @@
#define GUI__FONT_COLOR_ENABLED__TITLE #define GUI__FONT_COLOR_ENABLED__TITLE
#arg ALPHA #arg ALPHA
255#endarg 255#endarg
"186, 172, 125, {ALPHA}" "186, 172, 125, {ALPHA}" #enddef
#enddef
# This now uses the default disabled color but should be tiny bit lighter. # This now uses the default disabled color but should be tiny bit lighter.
#define GUI__FONT_COLOR_DISABLED__TITLE #define GUI__FONT_COLOR_DISABLED__TITLE
#arg ALPHA #arg ALPHA
255#endarg 255 #endarg
{GUI__FONT_COLOR_DISABLED__DEFAULT ALPHA={ALPHA}} {GUI__FONT_COLOR_DISABLED__DEFAULT ALPHA={ALPHA}} #enddef
#enddef
# This color is used as background in the listbox. # This color is used as background in the listbox.
#define GUI__BACKGROUND_COLOR_ENABLED #define GUI__BACKGROUND_COLOR_ENABLED
#arg ALPHA #arg ALPHA
89#endarg 89 #endarg
"0, 0, 0, {ALPHA}" "0, 0, 0, {ALPHA}" #enddef
#enddef
#define GUI__BACKGROUND_COLOR_DISABLED #define GUI__BACKGROUND_COLOR_DISABLED
#arg ALPHA #arg ALPHA
64#endarg 64 #endarg
"64, 64, 64, {ALPHA}" "64, 64, 64, {ALPHA}" #enddef
#enddef
#define GUI__BORDER_COLOR_DARK #define GUI__BORDER_COLOR_DARK
#arg ALPHA #arg ALPHA
255#endarg 255 #endarg
"114, 79, 46, {ALPHA}" "114, 79, 46, {ALPHA}" #enddef
#enddef
#define GUI__BORDER_COLOR #define GUI__BORDER_COLOR
#arg ALPHA #arg ALPHA
255#endarg 255 #endarg
"162, 127, 68, {ALPHA}" "162, 127, 68, {ALPHA}" #enddef
#enddef
#define GUI__BORDER_COLOR_BRIGHT #define GUI__BORDER_COLOR_BRIGHT
#arg ALPHA #arg ALPHA
255#endarg 255 #endarg
"185, 158, 75, {ALPHA}" "185, 158, 75, {ALPHA}" #enddef
#enddef
# Draws the background for a selected cell in a listbox. For now there's one # Draws the background for a selected cell in a listbox. For now there's one
# version for both tiny and normal gui. # version for both tiny and normal gui.