UNPKG

webdriverio-automation

Version:

WebdriverIO-Automation android ios project

30 lines (25 loc) 520 B
/** * @preserve * Copyright 2015-2016 Igor Bezkrovnyi * All rights reserved. (MIT Licensed) * * constants.ts - part of Image Quantization Library */ /** * sRGB (based on ITU-R Recommendation BT.709) * http://en.wikipedia.org/wiki/SRGB */ enum Y { RED = .2126, GREEN = .7152, BLUE = .0722, WHITE = 1 } enum x { RED = .6400, GREEN = .3000, BLUE = .1500, WHITE = .3127 } enum y { RED = .3300, GREEN = .6000, BLUE = .0600, WHITE = .3290 } export { Y, x, y }