HEX: #C6B46D
RGB: (198,180,109)
#C6B46D contains mainly red and green colors. Web safe color of #C6B46D is #CCCC66 (or #CC6).
#C6B46D color RGB value is (198,180,109).
RGB: (198,180,109) (78%,71%,43%)
R 198 of 255 = 78%
G 180 of 255 = 71%
B 109 of 255 = 43%
R + G + B ~ 64%. #C6B46D is quite light color.
R + G + B =
198 + 180 + 109 = 487 (100%)
R 198 of 487 ~ 40.66%
G 180 of 487 ~ 36.96%
B 109 of 487 ~ 22.38%
#C6B46D color CMYK value is (0,9,45,22).
CMYK: (0,9,45,22) C0M9Y45K22 (0%,9%,45%,22%) (0.00/0.09/0.45/0.22)
C6 | B4 | 6D | |
---|---|---|---|
RGB | 198 | 180 | 109 |
HSL | 48° | 43.84% | 60.20% |
HSB/HSV | 48° | 44.95% | 77.65% |
CMYK | 0.00% | 9.09% | 44.95% |
22.35% |
HEX | C6 | B4 | 6D |
Decimal | 198 | 180 | 109 |
Binary | 11000110 | 10110100 | 1101101 |
Octal | 306 | 264 | 155 |
Examples of css and html codes for elements with #C6B46D color. Also use rgb(198,180,109) instead hex code.
.myTextColor { color: #C6B46D; }
<p style="color:#C6B46D">This sample text font color is #C6B46D.</p>
This text font color is #C6B46D.
.myBgColor { background-color: #C6B46D; }
<div style="background-color:#C6B46D">Inner text</div>
This div background color is #C6B46D.
.myBorderColor { border: 1px solid #C6B46D; }
<div style="border:3px solid #C6B46D">Div</div>
This div border color is #C6B46D.
.myOpacity80 { color: #C6B46D; opacity: 0.8; }
<p style="color:#C6B46D;opacity:0.8;">80%</p>
Text with #C6B46D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6B46D;}
<p style="text-shadow: 3px 3px 1px #C6B46D">Text here.</p>
This text has shadow with #C6B46D color.
.textShadow {text-shadow: 3px 3px 1px #C6B46D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6B46D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6B46D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6B46D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6B46D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6B46D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6B46D; -webkit-box-shadow: 1px 1px 3px 2px #C6B46D; box-shadow: 1px 1px 3px 2px #C6B46D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6B46D; -webkit-box-shadow: 1px 1px 3px 2px #C6B46D; box-shadow:1px 1px 3px 2px #C6B46D;">
Div content here</div>
This text has color #C6B46D on black background.
This text has color #C6B46D on white background.
This text has black color on #C6B46D background.
This text has white color on #C6B46D background.