#C08081 color RGB value is (12, 8, 8).
#C08081 hex color red value is 12, green value is 8, and blue value is 8.
Cylindrical-coordinate representations (HSL) of color #C08081
hue: 0,
saturation: 0.2 and lightness: 0.04.
The process color (four-color CMYK) of #C08081 color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #C08081 is #ff9999. Color #C08081 contains mainly RED.
Color spaces of #C08081 | Value |
---|---|
RGB | 192, 128, 129 |
HSL | 1, 0.34, 0.63 |
HSV | 359°, 33°, 75° |
XYZ | 33.42, 28.23, 24.45 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11000000 | 10000000 | 10000001 |
Octal | 300 | 200 | 201 |
Decimal | 192 | 128 | 129 |
Hex | C0 | 80 | 81 |
Shades of #C08081
Tints of #C08081
.mybgColor {background-color: #C08081;} .myforeColor {color: #C08081;} .myborderColor {border:3px solid #C08081;}
<p style="color:#C08081">Text here</p>
This sample text is styled with the font color #C08081. 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,
<div style="background-color:#C08081">Div content here</div>
<div style="border:3px solid #C08081">Div here</div>
.textShadowRgb { text-shadow: 4px 4px 2px rgba(192, 128, 129, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #C08081; } .divShadow { -moz-box-shadow: 1px 1px 3px #C08081; -webkit-box-shadow: 1px 1px 3px #C08081; box-shadow: 1px 1px 3px #C08081; }
<p style="text-shadow: 4px 4px 2px rgba(192, 128, 129, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #C08081;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #C08081;
-webkit-box-shadow: 1px 1px 3px #C08081;
box-shadow: 1px 1px 3px #C08081;">Div content here</div>