color details

Color Details
#cb808c Color Hex

#cb808c color RGB value is (12, 184, 8).
#cb808c hex color red value is 12, green value is 184, and blue value is 8.
Cylindrical-coordinate representations (HSL) of color #cb808c hue: 118.64, saturation: 0.92 and lightness: 0.38.

The process color (four-color CMYK) of #cb808c color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #cb808c is #ff9999. Color #cb808c contains mainly RED.

Color Spaces
Color spaces of #cb808cValue
RGB203, 128, 140
HSL0.97, 0.42, 0.65
HSV350°, 37°, 80°
XYZ37.08, 30.03, 28.65
Base Numbers
Base Red Green Blue
Binary 11001011 10000000 10001100
Octal 313 200 214
Decimal 203 128 140
Hex CB 80 8C

RGB Percentages for Color #cb808c

43.1%
27.18%
29.72%

CMYK Percentages of the Color #cb808c

36.95%
31.03%
20.39%
CSS Codes for Color #cb808c
.mybgColor {background-color: #cb808c;}
.myforeColor {color: #cb808c;}
.myborderColor {border:3px solid #cb808c;}
Text Font Color #cb808c

<p style="color:#cb808c">Text here</p>

This sample text is styled with the font color #cb808c. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,

Background Color #cb808c

<div style="background-color:#cb808c">Div content here</div>

The background color of this div is #cb808c
Border Color #cb808c

<div style="border:3px solid #cb808c">Div here</div>

The border color of this div is #cb808c
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(203, 128, 140, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #cb808c;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #cb808c;
-webkit-box-shadow: 1px 1px 3px #cb808c;
box-shadow: 1px 1px 3px #cb808c;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(203, 128, 140, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #cb808c;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

<div style="-moz-box-shadow: 1px 1px 3px #cb808c; -webkit-box-shadow: 1px 1px 3px #cb808c; box-shadow: 1px 1px 3px #cb808c;">Div content here</div>

This div box has a shadow with a specified color. #cb808c

Scroll to Top