HEX: #DFBEF5
RGB: (223,190,245)
#DFBEF5 contains red, green and blue colors in about the same proportion. Web safe color of #DFBEF5 is #CCCCFF (or #CCF).
#DFBEF5 color RGB value is (223,190,245).
RGB: (223,190,245) (87%,75%,96%)
R 223 of 255 = 87%
G 190 of 255 = 75%
B 245 of 255 = 96%
R + G + B ~ 86%. #DFBEF5 is light color.
R + G + B =
223 + 190 + 245 = 658 (100%)
R 223 of 658 ~ 33.89%
G 190 of 658 ~ 28.88%
B 245 of 658 ~ 37.23%
#DFBEF5 color CMYK value is (9,22,0,4).
CMYK: (9,22,0,4) C9M22Y0K4 (9%,22%,0%,4%) (0.09/0.22/0.00/0.04)
DF | BE | F5 | |
---|---|---|---|
RGB | 223 | 190 | 245 |
HSL | 276° | 73.33% | 85.29% |
HSB/HSV | 276° | 22.45% | 96.08% |
CMYK | 8.98% | 22.45% | 0.00% |
3.92% |
HEX | DF | BE | F5 |
Decimal | 223 | 190 | 245 |
Binary | 11011111 | 10111110 | 11110101 |
Octal | 337 | 276 | 365 |
Examples of css and html codes for elements with #DFBEF5 color. Also use rgb(223,190,245) instead hex code.
.myTextColor { color: #DFBEF5; }
<p style="color:#DFBEF5">This sample text font color is #DFBEF5.</p>
This text font color is #DFBEF5.
.myBgColor { background-color: #DFBEF5; }
<div style="background-color:#DFBEF5">Inner text</div>
This div background color is #DFBEF5.
.myBorderColor { border: 1px solid #DFBEF5; }
<div style="border:3px solid #DFBEF5">Div</div>
This div border color is #DFBEF5.
.myOpacity80 { color: #DFBEF5; opacity: 0.8; }
<p style="color:#DFBEF5;opacity:0.8;">80%</p>
Text with #DFBEF5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DFBEF5;}
<p style="text-shadow: 3px 3px 1px #DFBEF5">Text here.</p>
This text has shadow with #DFBEF5 color.
.textShadow {text-shadow: 3px 3px 1px #DFBEF5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DFBEF5, 5px 5px 20px red">Text here.</p>
This text has shadow with #DFBEF5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DFBEF5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DFBEF5, Direction=45, Strength=4)">Text</p>
This text has shadow with #DFBEF5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DFBEF5; -webkit-box-shadow: 1px 1px 3px 2px #DFBEF5; box-shadow: 1px 1px 3px 2px #DFBEF5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DFBEF5; -webkit-box-shadow: 1px 1px 3px 2px #DFBEF5; box-shadow:1px 1px 3px 2px #DFBEF5;">
Div content here</div>
This text has color #DFBEF5 on black background.
This text has color #DFBEF5 on white background.
This text has black color on #DFBEF5 background.
This text has white color on #DFBEF5 background.