HEX: #C9997F
RGB: (201,153,127)
#C9997F contains mainly red and green colors. Web safe color of #C9997F is #CC9966 (or #C96).
#C9997F color RGB value is (201,153,127).
RGB: (201,153,127) (79%,60%,50%)
R 201 of 255 = 79%
G 153 of 255 = 60%
B 127 of 255 = 50%
R + G + B ~ 63%. #C9997F is quite light color.
R + G + B =
201 + 153 + 127 = 481 (100%)
R 201 of 481 ~ 41.79%
G 153 of 481 ~ 31.81%
B 127 of 481 ~ 26.4%
#C9997F color CMYK value is (0,24,37,21).
CMYK: (0,24,37,21) C0M24Y37K21 (0%,24%,37%,21%) (0.00/0.24/0.37/0.21)
C9 | 99 | 7F | |
---|---|---|---|
RGB | 201 | 153 | 127 |
HSL | 21° | 40.66% | 64.31% |
HSB/HSV | 21° | 36.82% | 78.82% |
CMYK | 0.00% | 23.88% | 36.82% |
21.18% |
HEX | C9 | 99 | 7F |
Decimal | 201 | 153 | 127 |
Binary | 11001001 | 10011001 | 1111111 |
Octal | 311 | 231 | 177 |
Examples of css and html codes for elements with #C9997F color. Also use rgb(201,153,127) instead hex code.
.myTextColor { color: #C9997F; }
<p style="color:#C9997F">This sample text font color is #C9997F.</p>
This text font color is #C9997F.
.myBgColor { background-color: #C9997F; }
<div style="background-color:#C9997F">Inner text</div>
This div background color is #C9997F.
.myBorderColor { border: 1px solid #C9997F; }
<div style="border:3px solid #C9997F">Div</div>
This div border color is #C9997F.
.myOpacity80 { color: #C9997F; opacity: 0.8; }
<p style="color:#C9997F;opacity:0.8;">80%</p>
Text with #C9997F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9997F;}
<p style="text-shadow: 3px 3px 1px #C9997F">Text here.</p>
This text has shadow with #C9997F color.
.textShadow {text-shadow: 3px 3px 1px #C9997F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9997F, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9997F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9997F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9997F, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9997F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9997F; -webkit-box-shadow: 1px 1px 3px 2px #C9997F; box-shadow: 1px 1px 3px 2px #C9997F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9997F; -webkit-box-shadow: 1px 1px 3px 2px #C9997F; box-shadow:1px 1px 3px 2px #C9997F;">
Div content here</div>
This text has color #C9997F on black background.
This text has color #C9997F on white background.
This text has black color on #C9997F background.
This text has white color on #C9997F background.