HEX: #C7C99B
RGB: (199,201,155)
#C7C99B contains red, green and blue colors in about the same proportion. Web safe color of #C7C99B is #CCCC99 (or #CC9).
#C7C99B color RGB value is (199,201,155).
RGB: (199,201,155) (78%,79%,61%)
R 199 of 255 = 78%
G 201 of 255 = 79%
B 155 of 255 = 61%
R + G + B ~ 73%. #C7C99B is quite light color.
R + G + B =
199 + 201 + 155 = 555 (100%)
R 199 of 555 ~ 35.86%
G 201 of 555 ~ 36.22%
B 155 of 555 ~ 27.93%
#C7C99B color CMYK value is (1,0,23,21).
CMYK: (1,0,23,21) C1M0Y23K21 (1%,0%,23%,21%) (0.01/0.00/0.23/0.21)
C7 | C9 | 9B | |
---|---|---|---|
RGB | 199 | 201 | 155 |
HSL | 63° | 29.87% | 69.80% |
HSB/HSV | 63° | 22.89% | 78.82% |
CMYK | 1.00% | 0.00% | 22.89% |
21.18% |
HEX | C7 | C9 | 9B |
Decimal | 199 | 201 | 155 |
Binary | 11000111 | 11001001 | 10011011 |
Octal | 307 | 311 | 233 |
Examples of css and html codes for elements with #C7C99B color. Also use rgb(199,201,155) instead hex code.
.myTextColor { color: #C7C99B; }
<p style="color:#C7C99B">This sample text font color is #C7C99B.</p>
This text font color is #C7C99B.
.myBgColor { background-color: #C7C99B; }
<div style="background-color:#C7C99B">Inner text</div>
This div background color is #C7C99B.
.myBorderColor { border: 1px solid #C7C99B; }
<div style="border:3px solid #C7C99B">Div</div>
This div border color is #C7C99B.
.myOpacity80 { color: #C7C99B; opacity: 0.8; }
<p style="color:#C7C99B;opacity:0.8;">80%</p>
Text with #C7C99B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7C99B;}
<p style="text-shadow: 3px 3px 1px #C7C99B">Text here.</p>
This text has shadow with #C7C99B color.
.textShadow {text-shadow: 3px 3px 1px #C7C99B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7C99B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7C99B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7C99B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7C99B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7C99B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7C99B; -webkit-box-shadow: 1px 1px 3px 2px #C7C99B; box-shadow: 1px 1px 3px 2px #C7C99B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7C99B; -webkit-box-shadow: 1px 1px 3px 2px #C7C99B; box-shadow:1px 1px 3px 2px #C7C99B;">
Div content here</div>
This text has color #C7C99B on black background.
This text has color #C7C99B on white background.
This text has black color on #C7C99B background.
This text has white color on #C7C99B background.