diff --git a/addons/main/CfgColorStyles.hpp b/addons/main/CfgColorStyles.hpp index db138c5..7d1203d 100644 --- a/addons/main/CfgColorStyles.hpp +++ b/addons/main/CfgColorStyles.hpp @@ -105,7 +105,7 @@ class diwako_dui_colors { white = "#FFFFFF"; red = "#DE0000"; green = "#079625"; - blue = "#3369dA"; + blue = "#3369DA"; yellow = "#D99F28"; }; diff --git a/addons/main/include/getColorStyles.sqf b/addons/main/include/getColorStyles.sqf index 3899338..25e5fc0 100644 --- a/addons/main/include/getColorStyles.sqf +++ b/addons/main/include/getColorStyles.sqf @@ -12,7 +12,7 @@ private _colorIdent = []; private _getColorFromHex = { params ["_key", "_hex"]; - _hex = toArray _hex; + _hex = toArray toUpper _hex; _hex deleteAt 0; //remove the '#' at the beginning private _nums = toArray "0123456789ABCDEF"; //for converting hex nibbles to base 10 equivalents