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