StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 years ago | |
---|---|---|
.. | ||
LICENSE | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago | |
readme.md | 4 years ago |
readme.md
color-parse 
Fast and tiny color string parser.
$ npm install color-parse
var parse = require('color-parse')
parse('hsla(12, 10%, 50%, .3)')
// { space: 'hsl', values: [12, 10, 50], alpha: 0.3 }
Parsed strings
red
,green
etc., see color-namergb(10, 20, 30)
,rgba(10, 20, 30, .3)
hsl()
,hsla()
inc. named hueshwb()
cmyk()
xyz()
lab()
lch()
luv()
#RGB
#RGBA
#RRGGBB
#RRGGBBAA
R:10 G:20 B:30
(R10 / G20 / B30)
C100/M80/Y0/K35
Parsed not strings
[10, 20, 20]
as RGB color space{r: 10, g: 20, b: 30}
{red: 10, green: 20, blue: 30}
{h: 10, s: 20, l: 30}
0x00ff00
,0x0000ff
numbers
Not parsed strings
'yellowblue'
returnsnull
Related
- color-space — collection of color space conversions.
- color-rgba — convert any color string to rgba array.
- color-alpha — change alpha component of any color.
Analogs
- parse-color — parser by James Halliday. Initially inspired by that awesome parser. It performs calculations to every possible space which results in bloated size of lib.
- color-parser — parser by TJ. Supports limited set of spaces.
- color-string — color parsing/serializing module by Heather Arthur. Has extensive API for parsing and serializing from any to any space.