color details

Color Details
#C78181 Color Hex

#C78181 color RGB value is (12, 120, 24).
#C78181 hex color red value is 12, green value is 120, and blue value is 24.
Cylindrical-coordinate representations (HSL) of color #C78181 hue: 126.67, saturation: 0.82 and lightness: 0.26.

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

Color Spaces
Color spaces of #C78181Value
RGB199, 129, 129
HSL0, 0.38, 0.64
HSV0°, 35°, 78°
XYZ35.37, 29.43, 24.58
Base Numbers
Base Red Green Blue
Binary 11000111 10000001 10000001
Octal 307 201 201
Decimal 199 129 129
Hex C7 81 81

RGB Percentages for Color #C78181

43.54%
28.23%
28.23%

CMYK Percentages of the Color #C78181

35.18%
35.18%
21.96%
CSS Codes for Color #C78181
.mybgColor {background-color: #C78181;}
.myforeColor {color: #C78181;}
.myborderColor {border:3px solid #C78181;}
Text Font Color #C78181

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

This sample text is styled with the font color #C78181. 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 #C78181

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

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

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

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

<p style="text-shadow: 4px 4px 2px rgba(199, 129, 129, 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 #C78181;">Text here</p>

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

Shadow Div Box

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

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

Scroll to Top