HEX: #DB706F
RGB: (219,112,111)
#DB706F contains mainly red color. Web safe color of #DB706F is #CC6666 (or #C66).
#DB706F color RGB value is (219,112,111).
RGB: (219,112,111) (86%,44%,44%)
R 219 of 255 = 86%
G 112 of 255 = 44%
B 111 of 255 = 44%
R + G + B ~ 58%. #DB706F is middle color (not dark and not light).
R + G + B =
219 + 112 + 111 = 442 (100%)
R 219 of 442 ~ 49.55%
G 112 of 442 ~ 25.34%
B 111 of 442 ~ 25.11%
#DB706F color CMYK value is (0,49,49,14).
CMYK: (0,49,49,14) C0M49Y49K14 (0%,49%,49%,14%) (0.00/0.49/0.49/0.14)
DB | 70 | 6F | |
---|---|---|---|
RGB | 219 | 112 | 111 |
HSL | 1° | 60.00% | 64.71% |
HSB/HSV | 1° | 49.32% | 85.88% |
CMYK | 0.00% | 48.86% | 49.32% |
14.12% |
HEX | DB | 70 | 6F |
Decimal | 219 | 112 | 111 |
Binary | 11011011 | 1110000 | 1101111 |
Octal | 333 | 160 | 157 |
Examples of css and html codes for elements with #DB706F color. Also use rgb(219,112,111) instead hex code.
.myTextColor { color: #DB706F; }
<p style="color:#DB706F">This sample text font color is #DB706F.</p>
This text font color is #DB706F.
.myBgColor { background-color: #DB706F; }
<div style="background-color:#DB706F">Inner text</div>
This div background color is #DB706F.
.myBorderColor { border: 1px solid #DB706F; }
<div style="border:3px solid #DB706F">Div</div>
This div border color is #DB706F.
.myOpacity80 { color: #DB706F; opacity: 0.8; }
<p style="color:#DB706F;opacity:0.8;">80%</p>
Text with #DB706F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DB706F;}
<p style="text-shadow: 3px 3px 1px #DB706F">Text here.</p>
This text has shadow with #DB706F color.
.textShadow {text-shadow: 3px 3px 1px #DB706F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DB706F, 5px 5px 20px red">Text here.</p>
This text has shadow with #DB706F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DB706F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DB706F, Direction=45, Strength=4)">Text</p>
This text has shadow with #DB706F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DB706F; -webkit-box-shadow: 1px 1px 3px 2px #DB706F; box-shadow: 1px 1px 3px 2px #DB706F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DB706F; -webkit-box-shadow: 1px 1px 3px 2px #DB706F; box-shadow:1px 1px 3px 2px #DB706F;">
Div content here</div>
This text has color #DB706F on black background.
This text has color #DB706F on white background.
This text has black color on #DB706F background.
This text has white color on #DB706F background.