HEX: #D59EAB
RGB: (213,158,171)
#D59EAB contains red, green and blue colors in about the same proportion. Web safe color of #D59EAB is #CC9999 (or #C99).
#D59EAB color RGB value is (213,158,171).
RGB: (213,158,171) (84%,62%,67%)
R 213 of 255 = 84%
G 158 of 255 = 62%
B 171 of 255 = 67%
R + G + B ~ 71%. #D59EAB is quite light color.
R + G + B =
213 + 158 + 171 = 542 (100%)
R 213 of 542 ~ 39.3%
G 158 of 542 ~ 29.15%
B 171 of 542 ~ 31.55%
#D59EAB color CMYK value is (0,26,20,16).
CMYK: (0,26,20,16) C0M26Y20K16 (0%,26%,20%,16%) (0.00/0.26/0.20/0.16)
D5 | 9E | AB | |
---|---|---|---|
RGB | 213 | 158 | 171 |
HSL | 346° | 39.57% | 72.75% |
HSB/HSV | 346° | 25.82% | 83.53% |
CMYK | 0.00% | 25.82% | 19.72% |
16.47% |
HEX | D5 | 9E | AB |
Decimal | 213 | 158 | 171 |
Binary | 11010101 | 10011110 | 10101011 |
Octal | 325 | 236 | 253 |
Examples of css and html codes for elements with #D59EAB color. Also use rgb(213,158,171) instead hex code.
.myTextColor { color: #D59EAB; }
<p style="color:#D59EAB">This sample text font color is #D59EAB.</p>
This text font color is #D59EAB.
.myBgColor { background-color: #D59EAB; }
<div style="background-color:#D59EAB">Inner text</div>
This div background color is #D59EAB.
.myBorderColor { border: 1px solid #D59EAB; }
<div style="border:3px solid #D59EAB">Div</div>
This div border color is #D59EAB.
.myOpacity80 { color: #D59EAB; opacity: 0.8; }
<p style="color:#D59EAB;opacity:0.8;">80%</p>
Text with #D59EAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D59EAB;}
<p style="text-shadow: 3px 3px 1px #D59EAB">Text here.</p>
This text has shadow with #D59EAB color.
.textShadow {text-shadow: 3px 3px 1px #D59EAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D59EAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D59EAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D59EAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D59EAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D59EAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D59EAB; -webkit-box-shadow: 1px 1px 3px 2px #D59EAB; box-shadow: 1px 1px 3px 2px #D59EAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D59EAB; -webkit-box-shadow: 1px 1px 3px 2px #D59EAB; box-shadow:1px 1px 3px 2px #D59EAB;">
Div content here</div>
This text has color #D59EAB on black background.
This text has color #D59EAB on white background.
This text has black color on #D59EAB background.
This text has white color on #D59EAB background.