https://github.com/d3/d3/blob/master/API.md#colors-d3-color
d3.color
可以接收一下参数
方法 | 描述 |
---|---|
d3.color(specifier) | https://www.w3.org/TR/css-color-4/#named-colors |
color.opacity | |
color.copy([values]) | 拷贝一个颜色,可以指定一个具体的值(rgba)来覆盖 |
color.rgb | |
color.brighter([k]) | 返回一个更亮颜色的拷贝 |
color.darker([k]) | 返回一个更暗颜色的拷贝 |
color.displayable() | returns true if the color is displayable on standard hardware. |
color.formatHex() | 十六进制表示 returns the hexadecimal RGB string representation of this color. |
color.formatHsl() | returns the RGB string representation of this color. |
color.formatRgb() | returns the HSL string representation of this color. |
color.toString() | color.formatRgb() |
d3.rgb(color) | d3.rgb(r, g, b[, opacity]) d3.rgb(specifier) d3.rgb(color) |
d3.hsl(color) | d3.hsl(h, s, l[, opacity]) d3.hsl(specifier) d3.hsl(color) |
d3.lab(color) | d3.lab(l, a, b[, opacity]) d3.lab(specifier) d3.lab(color) |
d3.hcl(color) | d3.hcl(h, c, l[, opacity]) d3.hcl(specifier) d3.hcl(color) |
d3.lch(color) | d3.lch(color) d3.lch(specifier) d3.lch(l, c, h[, opacity]) |
d3.gray(l[, opacity]) | create a new Lab gray. |
d3.cubehelix(color) | d3.cubehelix(h, s, l[, opacity]) d3.cubehelix(specifier) d3.cubehelix(color) |
斜体样式