HEX: #C99596
RGB: (201,149,150)
#C99596 contains red, green and blue colors in about the same proportion. Web safe color of #C99596 is #CC9999 (or #C99).
#C99596 color RGB value is (201,149,150).
RGB: (201,149,150) (79%,58%,59%)
R 201 of 255 = 79%
G 149 of 255 = 58%
B 150 of 255 = 59%
R + G + B ~ 65%. #C99596 is quite light color.
R + G + B =
201 + 149 + 150 = 500 (100%)
R 201 of 500 ~ 40.2%
G 149 of 500 ~ 29.8%
B 150 of 500 ~ 30%
#C99596 color CMYK value is (0,26,25,21).
CMYK: (0,26,25,21) C0M26Y25K21 (0%,26%,25%,21%) (0.00/0.26/0.25/0.21)
C9 | 95 | 96 | |
---|---|---|---|
RGB | 201 | 149 | 150 |
HSL | 359° | 32.50% | 68.63% |
HSB/HSV | 359° | 25.87% | 78.82% |
CMYK | 0.00% | 25.87% | 25.37% |
21.18% |
HEX | C9 | 95 | 96 |
Decimal | 201 | 149 | 150 |
Binary | 11001001 | 10010101 | 10010110 |
Octal | 311 | 225 | 226 |
Examples of css and html codes for elements with #C99596 color. Also use rgb(201,149,150) instead hex code.
.myTextColor { color: #C99596; }
<p style="color:#C99596">This sample text font color is #C99596.</p>
This text font color is #C99596.
.myBgColor { background-color: #C99596; }
<div style="background-color:#C99596">Inner text</div>
This div background color is #C99596.
.myBorderColor { border: 1px solid #C99596; }
<div style="border:3px solid #C99596">Div</div>
This div border color is #C99596.
.myOpacity80 { color: #C99596; opacity: 0.8; }
<p style="color:#C99596;opacity:0.8;">80%</p>
Text with #C99596 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C99596;}
<p style="text-shadow: 3px 3px 1px #C99596">Text here.</p>
This text has shadow with #C99596 color.
.textShadow {text-shadow: 3px 3px 1px #C99596, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C99596, 5px 5px 20px red">Text here.</p>
This text has shadow with #C99596 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C99596, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C99596, Direction=45, Strength=4)">Text</p>
This text has shadow with #C99596 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C99596; -webkit-box-shadow: 1px 1px 3px 2px #C99596; box-shadow: 1px 1px 3px 2px #C99596; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C99596; -webkit-box-shadow: 1px 1px 3px 2px #C99596; box-shadow:1px 1px 3px 2px #C99596;">
Div content here</div>
This text has color #C99596 on black background.
This text has color #C99596 on white background.
This text has black color on #C99596 background.
This text has white color on #C99596 background.