diff --git a/plugins/utils/color/ColorStringToInteger.js b/plugins/utils/color/ColorStringToInteger.js index 95cb270b50..e17f4e44e1 100644 --- a/plugins/utils/color/ColorStringToInteger.js +++ b/plugins/utils/color/ColorStringToInteger.js @@ -1,4 +1,4 @@ -import CSSColorStringToInteger from './CssColorStringToInteger.js'; +import { ColorNameToInteger } from './ColorNameToInteger.js'; var ColorStringToInteger = function (value) { if (typeof (value) !== 'string') { @@ -10,7 +10,7 @@ var ColorStringToInteger = function (value) { } else if (value.startsWith('0x')) { value = parseInt(value.substring(2), 16); } else { - value = CSSColorStringToInteger(value); + value = ColorNameToInteger(value); } return value; }