HEX: #C7C27D
RGB: (199,194,125)
#C7C27D contains mainly red and green colors. Web safe color of #C7C27D is #CCCC66 (or #CC6).
#C7C27D color RGB value is (199,194,125).
RGB: (199,194,125) (78%,76%,49%)
R 199 of 255 = 78%
G 194 of 255 = 76%
B 125 of 255 = 49%
R + G + B ~ 68%. #C7C27D is quite light color.
R + G + B =
199 + 194 + 125 = 518 (100%)
R 199 of 518 ~ 38.42%
G 194 of 518 ~ 37.45%
B 125 of 518 ~ 24.13%
#C7C27D color CMYK value is (0,3,37,22).
CMYK: (0,3,37,22) C0M3Y37K22 (0%,3%,37%,22%) (0.00/0.03/0.37/0.22)
C7 | C2 | 7D | |
---|---|---|---|
RGB | 199 | 194 | 125 |
HSL | 56° | 39.78% | 63.53% |
HSB/HSV | 56° | 37.19% | 78.04% |
CMYK | 0.00% | 2.51% | 37.19% |
21.96% |
HEX | C7 | C2 | 7D |
Decimal | 199 | 194 | 125 |
Binary | 11000111 | 11000010 | 1111101 |
Octal | 307 | 302 | 175 |
Examples of css and html codes for elements with #C7C27D color. Also use rgb(199,194,125) instead hex code.
.myTextColor { color: #C7C27D; }
<p style="color:#C7C27D">This sample text font color is #C7C27D.</p>
This text font color is #C7C27D.
.myBgColor { background-color: #C7C27D; }
<div style="background-color:#C7C27D">Inner text</div>
This div background color is #C7C27D.
.myBorderColor { border: 1px solid #C7C27D; }
<div style="border:3px solid #C7C27D">Div</div>
This div border color is #C7C27D.
.myOpacity80 { color: #C7C27D; opacity: 0.8; }
<p style="color:#C7C27D;opacity:0.8;">80%</p>
Text with #C7C27D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7C27D;}
<p style="text-shadow: 3px 3px 1px #C7C27D">Text here.</p>
This text has shadow with #C7C27D color.
.textShadow {text-shadow: 3px 3px 1px #C7C27D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7C27D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7C27D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7C27D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7C27D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7C27D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7C27D; -webkit-box-shadow: 1px 1px 3px 2px #C7C27D; box-shadow: 1px 1px 3px 2px #C7C27D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7C27D; -webkit-box-shadow: 1px 1px 3px 2px #C7C27D; box-shadow:1px 1px 3px 2px #C7C27D;">
Div content here</div>
This text has color #C7C27D on black background.
This text has color #C7C27D on white background.
This text has black color on #C7C27D background.
This text has white color on #C7C27D background.