HEX: #D3B359
RGB: (211,179,89)
#D3B359 contains mainly red and green colors. Web safe color of #D3B359 is #CC9966 (or #C96).
#D3B359 color RGB value is (211,179,89).
RGB: (211,179,89) (83%,70%,35%)
R 211 of 255 = 83%
G 179 of 255 = 70%
B 89 of 255 = 35%
R + G + B ~ 63%. #D3B359 is quite light color.
R + G + B =
211 + 179 + 89 = 479 (100%)
R 211 of 479 ~ 44.05%
G 179 of 479 ~ 37.37%
B 89 of 479 ~ 18.58%
#D3B359 color CMYK value is (0,15,58,17).
CMYK: (0,15,58,17) C0M15Y58K17 (0%,15%,58%,17%) (0.00/0.15/0.58/0.17)
D3 | B3 | 59 | |
---|---|---|---|
RGB | 211 | 179 | 89 |
HSL | 44° | 58.10% | 58.82% |
HSB/HSV | 44° | 57.82% | 82.75% |
CMYK | 0.00% | 15.17% | 57.82% |
17.25% |
HEX | D3 | B3 | 59 |
Decimal | 211 | 179 | 89 |
Binary | 11010011 | 10110011 | 1011001 |
Octal | 323 | 263 | 131 |
Examples of css and html codes for elements with #D3B359 color. Also use rgb(211,179,89) instead hex code.
.myTextColor { color: #D3B359; }
<p style="color:#D3B359">This sample text font color is #D3B359.</p>
This text font color is #D3B359.
.myBgColor { background-color: #D3B359; }
<div style="background-color:#D3B359">Inner text</div>
This div background color is #D3B359.
.myBorderColor { border: 1px solid #D3B359; }
<div style="border:3px solid #D3B359">Div</div>
This div border color is #D3B359.
.myOpacity80 { color: #D3B359; opacity: 0.8; }
<p style="color:#D3B359;opacity:0.8;">80%</p>
Text with #D3B359 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D3B359;}
<p style="text-shadow: 3px 3px 1px #D3B359">Text here.</p>
This text has shadow with #D3B359 color.
.textShadow {text-shadow: 3px 3px 1px #D3B359, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D3B359, 5px 5px 20px red">Text here.</p>
This text has shadow with #D3B359 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D3B359, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D3B359, Direction=45, Strength=4)">Text</p>
This text has shadow with #D3B359 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D3B359; -webkit-box-shadow: 1px 1px 3px 2px #D3B359; box-shadow: 1px 1px 3px 2px #D3B359; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D3B359; -webkit-box-shadow: 1px 1px 3px 2px #D3B359; box-shadow:1px 1px 3px 2px #D3B359;">
Div content here</div>
This text has color #D3B359 on black background.
This text has color #D3B359 on white background.
This text has black color on #D3B359 background.
This text has white color on #D3B359 background.