HEX: #C6C37E
RGB: (198,195,126)
#C6C37E contains mainly red and green colors. Web safe color of #C6C37E is #CCCC66 (or #CC6).
#C6C37E color RGB value is (198,195,126).
RGB: (198,195,126) (78%,76%,49%)
R 198 of 255 = 78%
G 195 of 255 = 76%
B 126 of 255 = 49%
R + G + B ~ 68%. #C6C37E is quite light color.
R + G + B =
198 + 195 + 126 = 519 (100%)
R 198 of 519 ~ 38.15%
G 195 of 519 ~ 37.57%
B 126 of 519 ~ 24.28%
#C6C37E color CMYK value is (0,2,36,22).
CMYK: (0,2,36,22) C0M2Y36K22 (0%,2%,36%,22%) (0.00/0.02/0.36/0.22)
C6 | C3 | 7E | |
---|---|---|---|
RGB | 198 | 195 | 126 |
HSL | 58° | 38.71% | 63.53% |
HSB/HSV | 58° | 36.36% | 77.65% |
CMYK | 0.00% | 1.52% | 36.36% |
22.35% |
HEX | C6 | C3 | 7E |
Decimal | 198 | 195 | 126 |
Binary | 11000110 | 11000011 | 1111110 |
Octal | 306 | 303 | 176 |
Examples of css and html codes for elements with #C6C37E color. Also use rgb(198,195,126) instead hex code.
.myTextColor { color: #C6C37E; }
<p style="color:#C6C37E">This sample text font color is #C6C37E.</p>
This text font color is #C6C37E.
.myBgColor { background-color: #C6C37E; }
<div style="background-color:#C6C37E">Inner text</div>
This div background color is #C6C37E.
.myBorderColor { border: 1px solid #C6C37E; }
<div style="border:3px solid #C6C37E">Div</div>
This div border color is #C6C37E.
.myOpacity80 { color: #C6C37E; opacity: 0.8; }
<p style="color:#C6C37E;opacity:0.8;">80%</p>
Text with #C6C37E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6C37E;}
<p style="text-shadow: 3px 3px 1px #C6C37E">Text here.</p>
This text has shadow with #C6C37E color.
.textShadow {text-shadow: 3px 3px 1px #C6C37E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6C37E, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6C37E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6C37E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6C37E, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6C37E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6C37E; -webkit-box-shadow: 1px 1px 3px 2px #C6C37E; box-shadow: 1px 1px 3px 2px #C6C37E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6C37E; -webkit-box-shadow: 1px 1px 3px 2px #C6C37E; box-shadow:1px 1px 3px 2px #C6C37E;">
Div content here</div>
This text has color #C6C37E on black background.
This text has color #C6C37E on white background.
This text has black color on #C6C37E background.
This text has white color on #C6C37E background.