HEX: #E6DBFB
RGB: (230,219,251)
#E6DBFB contains red, green and blue colors in about the same proportion. Web safe color of #E6DBFB is #CCCCFF (or #CCF).
#E6DBFB color RGB value is (230,219,251).
RGB: (230,219,251) (90%,86%,98%)
R 230 of 255 = 90%
G 219 of 255 = 86%
B 251 of 255 = 98%
R + G + B ~ 91%. #E6DBFB is light color.
R + G + B =
230 + 219 + 251 = 700 (100%)
R 230 of 700 ~ 32.86%
G 219 of 700 ~ 31.29%
B 251 of 700 ~ 35.86%
#E6DBFB color CMYK value is (8,13,0,2).
CMYK: (8,13,0,2) C8M13Y0K2 (8%,13%,0%,2%) (0.08/0.13/0.00/0.02)
E6 | DB | FB | |
---|---|---|---|
RGB | 230 | 219 | 251 |
HSL | 261° | 80.00% | 92.16% |
HSB/HSV | 261° | 12.75% | 98.43% |
CMYK | 8.37% | 12.75% | 0.00% |
1.57% |
HEX | E6 | DB | FB |
Decimal | 230 | 219 | 251 |
Binary | 11100110 | 11011011 | 11111011 |
Octal | 346 | 333 | 373 |
Examples of css and html codes for elements with #E6DBFB color. Also use rgb(230,219,251) instead hex code.
.myTextColor { color: #E6DBFB; }
<p style="color:#E6DBFB">This sample text font color is #E6DBFB.</p>
This text font color is #E6DBFB.
.myBgColor { background-color: #E6DBFB; }
<div style="background-color:#E6DBFB">Inner text</div>
This div background color is #E6DBFB.
.myBorderColor { border: 1px solid #E6DBFB; }
<div style="border:3px solid #E6DBFB">Div</div>
This div border color is #E6DBFB.
.myOpacity80 { color: #E6DBFB; opacity: 0.8; }
<p style="color:#E6DBFB;opacity:0.8;">80%</p>
Text with #E6DBFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6DBFB;}
<p style="text-shadow: 3px 3px 1px #E6DBFB">Text here.</p>
This text has shadow with #E6DBFB color.
.textShadow {text-shadow: 3px 3px 1px #E6DBFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6DBFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6DBFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6DBFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6DBFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6DBFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6DBFB; -webkit-box-shadow: 1px 1px 3px 2px #E6DBFB; box-shadow: 1px 1px 3px 2px #E6DBFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6DBFB; -webkit-box-shadow: 1px 1px 3px 2px #E6DBFB; box-shadow:1px 1px 3px 2px #E6DBFB;">
Div content here</div>
This text has color #E6DBFB on black background.
This text has color #E6DBFB on white background.
This text has black color on #E6DBFB background.
This text has white color on #E6DBFB background.