HEX: #D0596B
RGB: (208,89,107)
#D0596B contains mainly red color. Web safe color of #D0596B is #CC6666 (or #C66).
#D0596B color RGB value is (208,89,107).
RGB: (208,89,107) (82%,35%,42%)
R 208 of 255 = 82%
G 89 of 255 = 35%
B 107 of 255 = 42%
R + G + B ~ 53%. #D0596B is middle color (not dark and not light).
R + G + B =
208 + 89 + 107 = 404 (100%)
R 208 of 404 ~ 51.49%
G 89 of 404 ~ 22.03%
B 107 of 404 ~ 26.49%
#D0596B color CMYK value is (0,57,49,18).
CMYK: (0,57,49,18) C0M57Y49K18 (0%,57%,49%,18%) (0.00/0.57/0.49/0.18)
D0 | 59 | 6B | |
---|---|---|---|
RGB | 208 | 89 | 107 |
HSL | 351° | 55.87% | 58.24% |
HSB/HSV | 351° | 57.21% | 81.57% |
CMYK | 0.00% | 57.21% | 48.56% |
18.43% |
HEX | D0 | 59 | 6B |
Decimal | 208 | 89 | 107 |
Binary | 11010000 | 1011001 | 1101011 |
Octal | 320 | 131 | 153 |
Examples of css and html codes for elements with #D0596B color. Also use rgb(208,89,107) instead hex code.
.myTextColor { color: #D0596B; }
<p style="color:#D0596B">This sample text font color is #D0596B.</p>
This text font color is #D0596B.
.myBgColor { background-color: #D0596B; }
<div style="background-color:#D0596B">Inner text</div>
This div background color is #D0596B.
.myBorderColor { border: 1px solid #D0596B; }
<div style="border:3px solid #D0596B">Div</div>
This div border color is #D0596B.
.myOpacity80 { color: #D0596B; opacity: 0.8; }
<p style="color:#D0596B;opacity:0.8;">80%</p>
Text with #D0596B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D0596B;}
<p style="text-shadow: 3px 3px 1px #D0596B">Text here.</p>
This text has shadow with #D0596B color.
.textShadow {text-shadow: 3px 3px 1px #D0596B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D0596B, 5px 5px 20px red">Text here.</p>
This text has shadow with #D0596B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D0596B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D0596B, Direction=45, Strength=4)">Text</p>
This text has shadow with #D0596B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D0596B; -webkit-box-shadow: 1px 1px 3px 2px #D0596B; box-shadow: 1px 1px 3px 2px #D0596B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D0596B; -webkit-box-shadow: 1px 1px 3px 2px #D0596B; box-shadow:1px 1px 3px 2px #D0596B;">
Div content here</div>
This text has color #D0596B on black background.
This text has color #D0596B on white background.
This text has black color on #D0596B background.
This text has white color on #D0596B background.