diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 278cd71ce..f3867eb9c 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -13370,7 +13370,6 @@ }; function _Class(value) { - this.value = value; this.raw = colorToHex(value); } diff --git a/builds/crx/script.js b/builds/crx/script.js index ce4758443..28176a5a8 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -13381,7 +13381,6 @@ }; function _Class(value) { - this.value = value; this.raw = colorToHex(value); } diff --git a/src/Theming/Style.coffee b/src/Theming/Style.coffee index 73fe249de..c8fe2be5e 100644 --- a/src/Theming/Style.coffee +++ b/src/Theming/Style.coffee @@ -251,7 +251,7 @@ Style = else "000000" - constructor: (@value) -> + constructor: (value) -> @raw = colorToHex value hex: -> "#" + @raw