HEX: #C7C06A
RGB: (199,192,106)
#C7C06A contains mainly red and green colors. Web safe color of #C7C06A is #CCCC66 (or #CC6).
#C7C06A color RGB value is (199,192,106).
RGB: (199,192,106) (78%,75%,42%)
R 199 of 255 = 78%
G 192 of 255 = 75%
B 106 of 255 = 42%
R + G + B ~ 65%. #C7C06A is quite light color.
R + G + B =
199 + 192 + 106 = 497 (100%)
R 199 of 497 ~ 40.04%
G 192 of 497 ~ 38.63%
B 106 of 497 ~ 21.33%
#C7C06A color CMYK value is (0,4,47,22).
CMYK: (0,4,47,22) C0M4Y47K22 (0%,4%,47%,22%) (0.00/0.04/0.47/0.22)
C7 | C0 | 6A | |
---|---|---|---|
RGB | 199 | 192 | 106 |
HSL | 55° | 45.37% | 59.80% |
HSB/HSV | 55° | 46.73% | 78.04% |
CMYK | 0.00% | 3.52% | 46.73% |
21.96% |
HEX | C7 | C0 | 6A |
Decimal | 199 | 192 | 106 |
Binary | 11000111 | 11000000 | 1101010 |
Octal | 307 | 300 | 152 |
Examples of css and html codes for elements with #C7C06A color. Also use rgb(199,192,106) instead hex code.
.myTextColor { color: #C7C06A; }
<p style="color:#C7C06A">This sample text font color is #C7C06A.</p>
This text font color is #C7C06A.
.myBgColor { background-color: #C7C06A; }
<div style="background-color:#C7C06A">Inner text</div>
This div background color is #C7C06A.
.myBorderColor { border: 1px solid #C7C06A; }
<div style="border:3px solid #C7C06A">Div</div>
This div border color is #C7C06A.
.myOpacity80 { color: #C7C06A; opacity: 0.8; }
<p style="color:#C7C06A;opacity:0.8;">80%</p>
Text with #C7C06A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7C06A;}
<p style="text-shadow: 3px 3px 1px #C7C06A">Text here.</p>
This text has shadow with #C7C06A color.
.textShadow {text-shadow: 3px 3px 1px #C7C06A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7C06A, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7C06A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7C06A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7C06A, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7C06A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7C06A; -webkit-box-shadow: 1px 1px 3px 2px #C7C06A; box-shadow: 1px 1px 3px 2px #C7C06A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7C06A; -webkit-box-shadow: 1px 1px 3px 2px #C7C06A; box-shadow:1px 1px 3px 2px #C7C06A;">
Div content here</div>
This text has color #C7C06A on black background.
This text has color #C7C06A on white background.
This text has black color on #C7C06A background.
This text has white color on #C7C06A background.