Lines Matching refs:hexDigit
23717 …inding) */ __webpack_require__.d(__webpack_exports__, "hexDigit", function() { return hexDigit; });
23953 function hexDigit(charCode) { function
23975 red: (hexDigit(text.charCodeAt(1)) * 0x11) / 255.0,
23976 green: (hexDigit(text.charCodeAt(2)) * 0x11) / 255.0,
23977 blue: (hexDigit(text.charCodeAt(3)) * 0x11) / 255.0,
23982 red: (hexDigit(text.charCodeAt(1)) * 0x11) / 255.0,
23983 green: (hexDigit(text.charCodeAt(2)) * 0x11) / 255.0,
23984 blue: (hexDigit(text.charCodeAt(3)) * 0x11) / 255.0,
23985 alpha: (hexDigit(text.charCodeAt(4)) * 0x11) / 255.0,
23989 red: (hexDigit(text.charCodeAt(1)) * 0x10 + hexDigit(text.charCodeAt(2))) / 255.0,
23990 green: (hexDigit(text.charCodeAt(3)) * 0x10 + hexDigit(text.charCodeAt(4))) / 255.0,
23991 blue: (hexDigit(text.charCodeAt(5)) * 0x10 + hexDigit(text.charCodeAt(6))) / 255.0,
23996 red: (hexDigit(text.charCodeAt(1)) * 0x10 + hexDigit(text.charCodeAt(2))) / 255.0,
23997 green: (hexDigit(text.charCodeAt(3)) * 0x10 + hexDigit(text.charCodeAt(4))) / 255.0,
23998 blue: (hexDigit(text.charCodeAt(5)) * 0x10 + hexDigit(text.charCodeAt(6))) / 255.0,
23999 alpha: (hexDigit(text.charCodeAt(7)) * 0x10 + hexDigit(text.charCodeAt(8))) / 255.0