HEX: #D18F09
RGB: (209,143,9)
#D18F09 contains mainly red color. Web safe color of #D18F09 is #CC9900 (or #C90).
#D18F09 color RGB value is (209,143,9).
RGB: (209,143,9) (82%,56%,4%)
R 209 of 255 = 82%
G 143 of 255 = 56%
B 9 of 255 = 4%
R + G + B ~ 47%. #D18F09 is middle color (not dark and not light).
R + G + B =
209 + 143 + 9 = 361 (100%)
R 209 of 361 ~ 57.89%
G 143 of 361 ~ 39.61%
B 9 of 361 ~ 2.49%
#D18F09 color CMYK value is (0,32,96,18).
CMYK: (0,32,96,18) C0M32Y96K18 (0%,32%,96%,18%) (0.00/0.32/0.96/0.18)
D1 | 8F | 09 | |
---|---|---|---|
RGB | 209 | 143 | 9 |
HSL | 40° | 91.74% | 42.75% |
HSB/HSV | 40° | 95.69% | 81.96% |
CMYK | 0.00% | 31.58% | 95.69% |
18.04% |
HEX | D1 | 8F | 09 |
Decimal | 209 | 143 | 9 |
Binary | 11010001 | 10001111 | 1001 |
Octal | 321 | 217 | 11 |
Examples of css and html codes for elements with #D18F09 color. Also use rgb(209,143,9) instead hex code.
.myTextColor { color: #D18F09; }
<p style="color:#D18F09">This sample text font color is #D18F09.</p>
This text font color is #D18F09.
.myBgColor { background-color: #D18F09; }
<div style="background-color:#D18F09">Inner text</div>
This div background color is #D18F09.
.myBorderColor { border: 1px solid #D18F09; }
<div style="border:3px solid #D18F09">Div</div>
This div border color is #D18F09.
.myOpacity80 { color: #D18F09; opacity: 0.8; }
<p style="color:#D18F09;opacity:0.8;">80%</p>
Text with #D18F09 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D18F09;}
<p style="text-shadow: 3px 3px 1px #D18F09">Text here.</p>
This text has shadow with #D18F09 color.
.textShadow {text-shadow: 3px 3px 1px #D18F09, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D18F09, 5px 5px 20px red">Text here.</p>
This text has shadow with #D18F09 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D18F09, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D18F09, Direction=45, Strength=4)">Text</p>
This text has shadow with #D18F09 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D18F09; -webkit-box-shadow: 1px 1px 3px 2px #D18F09; box-shadow: 1px 1px 3px 2px #D18F09; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D18F09; -webkit-box-shadow: 1px 1px 3px 2px #D18F09; box-shadow:1px 1px 3px 2px #D18F09;">
Div content here</div>
This text has color #D18F09 on black background.
This text has color #D18F09 on white background.
This text has black color on #D18F09 background.
This text has white color on #D18F09 background.