HEX: #D19ABB
RGB: (209,154,187)
#D19ABB contains red, green and blue colors in about the same proportion. Web safe color of #D19ABB is #CC99CC (or #C9C).
#D19ABB color RGB value is (209,154,187).
RGB: (209,154,187) (82%,60%,73%)
R 209 of 255 = 82%
G 154 of 255 = 60%
B 187 of 255 = 73%
R + G + B ~ 72%. #D19ABB is quite light color.
R + G + B =
209 + 154 + 187 = 550 (100%)
R 209 of 550 ~ 38%
G 154 of 550 ~ 28%
B 187 of 550 ~ 34%
#D19ABB color CMYK value is (0,26,11,18).
CMYK: (0,26,11,18) C0M26Y11K18 (0%,26%,11%,18%) (0.00/0.26/0.11/0.18)
D1 | 9A | BB | |
---|---|---|---|
RGB | 209 | 154 | 187 |
HSL | 324° | 37.41% | 71.18% |
HSB/HSV | 324° | 26.32% | 81.96% |
CMYK | 0.00% | 26.32% | 10.53% |
18.04% |
HEX | D1 | 9A | BB |
Decimal | 209 | 154 | 187 |
Binary | 11010001 | 10011010 | 10111011 |
Octal | 321 | 232 | 273 |
Examples of css and html codes for elements with #D19ABB color. Also use rgb(209,154,187) instead hex code.
.myTextColor { color: #D19ABB; }
<p style="color:#D19ABB">This sample text font color is #D19ABB.</p>
This text font color is #D19ABB.
.myBgColor { background-color: #D19ABB; }
<div style="background-color:#D19ABB">Inner text</div>
This div background color is #D19ABB.
.myBorderColor { border: 1px solid #D19ABB; }
<div style="border:3px solid #D19ABB">Div</div>
This div border color is #D19ABB.
.myOpacity80 { color: #D19ABB; opacity: 0.8; }
<p style="color:#D19ABB;opacity:0.8;">80%</p>
Text with #D19ABB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D19ABB;}
<p style="text-shadow: 3px 3px 1px #D19ABB">Text here.</p>
This text has shadow with #D19ABB color.
.textShadow {text-shadow: 3px 3px 1px #D19ABB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D19ABB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D19ABB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D19ABB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D19ABB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D19ABB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D19ABB; -webkit-box-shadow: 1px 1px 3px 2px #D19ABB; box-shadow: 1px 1px 3px 2px #D19ABB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D19ABB; -webkit-box-shadow: 1px 1px 3px 2px #D19ABB; box-shadow:1px 1px 3px 2px #D19ABB;">
Div content here</div>
This text has color #D19ABB on black background.
This text has color #D19ABB on white background.
This text has black color on #D19ABB background.
This text has white color on #D19ABB background.