HEX: #D4BA10
RGB: (212,186,16)
#D4BA10 contains mainly red and green colors. Web safe color of #D4BA10 is #CCCC00 (or #CC0).
#D4BA10 color RGB value is (212,186,16).
RGB: (212,186,16) (83%,73%,6%)
R 212 of 255 = 83%
G 186 of 255 = 73%
B 16 of 255 = 6%
R + G + B ~ 54%. #D4BA10 is middle color (not dark and not light).
R + G + B =
212 + 186 + 16 = 414 (100%)
R 212 of 414 ~ 51.21%
G 186 of 414 ~ 44.93%
B 16 of 414 ~ 3.86%
#D4BA10 color CMYK value is (0,12,92,17).
CMYK: (0,12,92,17) C0M12Y92K17 (0%,12%,92%,17%) (0.00/0.12/0.92/0.17)
D4 | BA | 10 | |
---|---|---|---|
RGB | 212 | 186 | 16 |
HSL | 52° | 85.96% | 44.71% |
HSB/HSV | 52° | 92.45% | 83.14% |
CMYK | 0.00% | 12.26% | 92.45% |
16.86% |
HEX | D4 | BA | 10 |
Decimal | 212 | 186 | 16 |
Binary | 11010100 | 10111010 | 10000 |
Octal | 324 | 272 | 20 |
Examples of css and html codes for elements with #D4BA10 color. Also use rgb(212,186,16) instead hex code.
.myTextColor { color: #D4BA10; }
<p style="color:#D4BA10">This sample text font color is #D4BA10.</p>
This text font color is #D4BA10.
.myBgColor { background-color: #D4BA10; }
<div style="background-color:#D4BA10">Inner text</div>
This div background color is #D4BA10.
.myBorderColor { border: 1px solid #D4BA10; }
<div style="border:3px solid #D4BA10">Div</div>
This div border color is #D4BA10.
.myOpacity80 { color: #D4BA10; opacity: 0.8; }
<p style="color:#D4BA10;opacity:0.8;">80%</p>
Text with #D4BA10 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4BA10;}
<p style="text-shadow: 3px 3px 1px #D4BA10">Text here.</p>
This text has shadow with #D4BA10 color.
.textShadow {text-shadow: 3px 3px 1px #D4BA10, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4BA10, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4BA10 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4BA10, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4BA10, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4BA10 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4BA10; -webkit-box-shadow: 1px 1px 3px 2px #D4BA10; box-shadow: 1px 1px 3px 2px #D4BA10; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4BA10; -webkit-box-shadow: 1px 1px 3px 2px #D4BA10; box-shadow:1px 1px 3px 2px #D4BA10;">
Div content here</div>
This text has color #D4BA10 on black background.
This text has color #D4BA10 on white background.
This text has black color on #D4BA10 background.
This text has white color on #D4BA10 background.