HEX: #DF99DB
RGB: (223,153,219)
#DF99DB contains mainly red and blue colors. Web safe color of #DF99DB is #CC99CC (or #C9C).
#DF99DB color RGB value is (223,153,219).
RGB: (223,153,219) (87%,60%,86%)
R 223 of 255 = 87%
G 153 of 255 = 60%
B 219 of 255 = 86%
R + G + B ~ 78%. #DF99DB is quite light color.
R + G + B =
223 + 153 + 219 = 595 (100%)
R 223 of 595 ~ 37.48%
G 153 of 595 ~ 25.71%
B 219 of 595 ~ 36.81%
#DF99DB color CMYK value is (0,31,2,13).
CMYK: (0,31,2,13) C0M31Y2K13 (0%,31%,2%,13%) (0.00/0.31/0.02/0.13)
DF | 99 | DB | |
---|---|---|---|
RGB | 223 | 153 | 219 |
HSL | 303° | 52.24% | 73.73% |
HSB/HSV | 303° | 31.39% | 87.45% |
CMYK | 0.00% | 31.39% | 1.79% |
12.55% |
HEX | DF | 99 | DB |
Decimal | 223 | 153 | 219 |
Binary | 11011111 | 10011001 | 11011011 |
Octal | 337 | 231 | 333 |
Examples of css and html codes for elements with #DF99DB color. Also use rgb(223,153,219) instead hex code.
.myTextColor { color: #DF99DB; }
<p style="color:#DF99DB">This sample text font color is #DF99DB.</p>
This text font color is #DF99DB.
.myBgColor { background-color: #DF99DB; }
<div style="background-color:#DF99DB">Inner text</div>
This div background color is #DF99DB.
.myBorderColor { border: 1px solid #DF99DB; }
<div style="border:3px solid #DF99DB">Div</div>
This div border color is #DF99DB.
.myOpacity80 { color: #DF99DB; opacity: 0.8; }
<p style="color:#DF99DB;opacity:0.8;">80%</p>
Text with #DF99DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DF99DB;}
<p style="text-shadow: 3px 3px 1px #DF99DB">Text here.</p>
This text has shadow with #DF99DB color.
.textShadow {text-shadow: 3px 3px 1px #DF99DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DF99DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #DF99DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DF99DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DF99DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #DF99DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DF99DB; -webkit-box-shadow: 1px 1px 3px 2px #DF99DB; box-shadow: 1px 1px 3px 2px #DF99DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DF99DB; -webkit-box-shadow: 1px 1px 3px 2px #DF99DB; box-shadow:1px 1px 3px 2px #DF99DB;">
Div content here</div>
This text has color #DF99DB on black background.
This text has color #DF99DB on white background.
This text has black color on #DF99DB background.
This text has white color on #DF99DB background.