Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

color

Description

The color function for CSS allows a color to be specified in a particular, specified color space (rather than the implicit sRGB color space in which most of the other color functions operate).

Syntax

CSS

color()

Values

<color()> =
    color(
        <colorspace-params>
        [ / [ <alpha-value> | none ] ]?
    )
<colorspace-params> =
    <predefined-rgb-params> |
    <xyz-params>
<predefined-rgb-params> =
    <predefined-rgb>
    [ <number> | <percentage> | none ]{3}
<predefined-rgb> =
    srgb |
    srgb-linear |
    display-p3 |
    a98-rgb |
    prophoto-rgb |
    rec2020
srgb

The same as legacy sRGB colors, such as rgb().

srgb-linear

The same as srgb except that the transfer function is linear-light (there is no gamma-encoding).

display-p3

It uses the same primary chromaticities as [DCI-P3], but with a D65 whitepoint, and the same transfer curve as sRGB.

a98-rgb

The transfer curve is a gamma function, close to but not exactly 1/2.2.

prophoto-rgb

The transfer curve is a gamma function with a value of 1/1.8, and a small linear portion near black. The white point is D50.

rec2020

ITU Reference 2020 is used for Ultra High Definition, 4k and 8k television.

<number>

An integer or zero or more decimal digits followed by a dot (.) followed by one or more decimal digits. The first character may be preceded by a sign (- or +). The last character may be succeeded by an exponent (e or E) and an integer.

<percentage>

Specifies the percentage using a number followed by a percent sign (%).

none

Specifies a missing component.

<xyz-params> =
    <xyz-space>
    [ <number> | <percentage> | none ]{3}
<xyz-space> =
    xyz |
    xyz-d50 |
    xyz-d65
xyz

Diffuse white has a luminance (Y) of 1.0. and, if necessary, chromatically adapted to the reference white. The reference white is D65.

xyz-d50

Diffuse white has a luminance (Y) of 1.0. and, if necessary, chromatically adapted to the reference white. The reference white is D50.

xyz-d65

Diffuse white has a luminance (Y) of 1.0. and, if necessary, chromatically adapted to the reference white. The reference white is D65.

<number>

An integer or zero or more decimal digits followed by a dot (.) followed by one or more decimal digits. The first character may be preceded by a sign (- or +). The last character may be succeeded by an exponent (e or E) and an integer.

<percentage>

Specifies the percentage using a number followed by a percent sign (%).

none

Specifies a missing component.

<alpha-value> =
    <number> |
    <percentage>
<number>

An integer or zero or more decimal digits followed by a dot (.) followed by one or more decimal digits. The first character may be preceded by a sign (- or +). The last character may be succeeded by an exponent (e or E) and an integer.

<percentage>

Specifies the percentage using a number followed by a percent sign (%).

none

Specifies a missing component.

Examples

1 · predefined-rgb · srgb

2 · predefined-rgb · srgb-linear

3 · predefined-rgb · display-p3

4 · predefined-rgb · a98-rgb

5 · predefined-rgb · prophoto-rgb

6 · predefined-rgb · rec2020

7 · predefined-rgb · JS

8 · xyz-space · xyz

9 · xyz-space · xyz-d50

10 · xyz-space · xyz-d65

11 · xyz-space · JS

hsl

hsla

hwb

lab

lch

oklab

oklch

rgb

rgba

abs

acos

asin

atan

atan2

attr

calc

clamp

conic-gradient

cos

counter

counters

hsl

hsla

hwb

lab

lch

linear-gradient

matrix

matrix3d

max

min

mod

oklab

oklch

param

perspective

radial-gradient

rem

repeating-conic-gradient

repeating-linear-gradient

repeating-radial-gradient

rgb

rgba

rotate

rotate3d

rotateX

rotateY

rotateZ

round

scale

scale3d

scaleX

scaleY

scaleZ

sin

skew

skewX

skewY

src

tan

translate

translate3d

translateX

translateY

translateZ

url

var

World Wide Web Consortium (W3C)

HomeMenu