HEX: #D0B400
RGB: (208,180,0)
#D0B400 contains only red and green colors. Web safe color of #D0B400 is #CCCC00 (or #CC0).
#D0B400 color RGB value is (208,180,0).
RGB: (208,180,0) (82%,71%,0%)
R 208 of 255 = 82%
G 180 of 255 = 71%
B 0 of 255 = 0%
R + G + B ~ 51%. #D0B400 is middle color (not dark and not light).
R + G + B =
208 + 180 + 0 = 388 (100%)
R 208 of 388 ~ 53.61%
G 180 of 388 ~ 46.39%
B 0 of 388 ~ 0%
#D0B400 color CMYK value is (0,13,100,18).
CMYK: (0,13,100,18) C0M13Y100K18 (0%,13%,100%,18%) (0.00/0.13/1.00/0.18)
D0 | B4 | 00 | |
---|---|---|---|
RGB | 208 | 180 | 0 |
HSL | 52° | 100.00% | 40.78% |
HSB/HSV | 52° | 100.00% | 81.57% |
CMYK | 0.00% | 13.46% | 100.00% |
18.43% |
HEX | D0 | B4 | 00 |
Decimal | 208 | 180 | 0 |
Binary | 11010000 | 10110100 | 0 |
Octal | 320 | 264 | 0 |
Examples of css and html codes for elements with #D0B400 color. Also use rgb(208,180,0) instead hex code.
.myTextColor { color: #D0B400; }
<p style="color:#D0B400">This sample text font color is #D0B400.</p>
This text font color is #D0B400.
.myBgColor { background-color: #D0B400; }
<div style="background-color:#D0B400">Inner text</div>
This div background color is #D0B400.
.myBorderColor { border: 1px solid #D0B400; }
<div style="border:3px solid #D0B400">Div</div>
This div border color is #D0B400.
.myOpacity80 { color: #D0B400; opacity: 0.8; }
<p style="color:#D0B400;opacity:0.8;">80%</p>
Text with #D0B400 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D0B400;}
<p style="text-shadow: 3px 3px 1px #D0B400">Text here.</p>
This text has shadow with #D0B400 color.
.textShadow {text-shadow: 3px 3px 1px #D0B400, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D0B400, 5px 5px 20px red">Text here.</p>
This text has shadow with #D0B400 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D0B400, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D0B400, Direction=45, Strength=4)">Text</p>
This text has shadow with #D0B400 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D0B400; -webkit-box-shadow: 1px 1px 3px 2px #D0B400; box-shadow: 1px 1px 3px 2px #D0B400; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D0B400; -webkit-box-shadow: 1px 1px 3px 2px #D0B400; box-shadow:1px 1px 3px 2px #D0B400;">
Div content here</div>
This text has color #D0B400 on black background.
This text has color #D0B400 on white background.
This text has black color on #D0B400 background.
This text has white color on #D0B400 background.