HEX: #D590BD
RGB: (213,144,189)
#D590BD contains mainly red and blue colors. Web safe color of #D590BD is #CC99CC (or #C9C).
#D590BD color RGB value is (213,144,189).
RGB: (213,144,189) (84%,56%,74%)
R 213 of 255 = 84%
G 144 of 255 = 56%
B 189 of 255 = 74%
R + G + B ~ 71%. #D590BD is quite light color.
R + G + B =
213 + 144 + 189 = 546 (100%)
R 213 of 546 ~ 39.01%
G 144 of 546 ~ 26.37%
B 189 of 546 ~ 34.62%
#D590BD color CMYK value is (0,32,11,16).
CMYK: (0,32,11,16) C0M32Y11K16 (0%,32%,11%,16%) (0.00/0.32/0.11/0.16)
D5 | 90 | BD | |
---|---|---|---|
RGB | 213 | 144 | 189 |
HSL | 321° | 45.10% | 70.00% |
HSB/HSV | 321° | 32.39% | 83.53% |
CMYK | 0.00% | 32.39% | 11.27% |
16.47% |
HEX | D5 | 90 | BD |
Decimal | 213 | 144 | 189 |
Binary | 11010101 | 10010000 | 10111101 |
Octal | 325 | 220 | 275 |
Examples of css and html codes for elements with #D590BD color. Also use rgb(213,144,189) instead hex code.
.myTextColor { color: #D590BD; }
<p style="color:#D590BD">This sample text font color is #D590BD.</p>
This text font color is #D590BD.
.myBgColor { background-color: #D590BD; }
<div style="background-color:#D590BD">Inner text</div>
This div background color is #D590BD.
.myBorderColor { border: 1px solid #D590BD; }
<div style="border:3px solid #D590BD">Div</div>
This div border color is #D590BD.
.myOpacity80 { color: #D590BD; opacity: 0.8; }
<p style="color:#D590BD;opacity:0.8;">80%</p>
Text with #D590BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D590BD;}
<p style="text-shadow: 3px 3px 1px #D590BD">Text here.</p>
This text has shadow with #D590BD color.
.textShadow {text-shadow: 3px 3px 1px #D590BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D590BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D590BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D590BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D590BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D590BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D590BD; -webkit-box-shadow: 1px 1px 3px 2px #D590BD; box-shadow: 1px 1px 3px 2px #D590BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D590BD; -webkit-box-shadow: 1px 1px 3px 2px #D590BD; box-shadow:1px 1px 3px 2px #D590BD;">
Div content here</div>
This text has color #D590BD on black background.
This text has color #D590BD on white background.
This text has black color on #D590BD background.
This text has white color on #D590BD background.