HEX: #EBDFFC
RGB: (235,223,252)
#EBDFFC contains red, green and blue colors in about the same proportion. Web safe color of #EBDFFC is #FFCCFF (or #FCF).
#EBDFFC color RGB value is (235,223,252).
RGB: (235,223,252) (92%,87%,99%)
R 235 of 255 = 92%
G 223 of 255 = 87%
B 252 of 255 = 99%
R + G + B ~ 93%. #EBDFFC is light color.
R + G + B =
235 + 223 + 252 = 710 (100%)
R 235 of 710 ~ 33.1%
G 223 of 710 ~ 31.41%
B 252 of 710 ~ 35.49%
#EBDFFC color CMYK value is (7,12,0,1).
CMYK: (7,12,0,1) C7M12Y0K1 (7%,12%,0%,1%) (0.07/0.12/0.00/0.01)
EB | DF | FC | |
---|---|---|---|
RGB | 235 | 223 | 252 |
HSL | 265° | 82.86% | 93.14% |
HSB/HSV | 265° | 11.51% | 98.82% |
CMYK | 6.75% | 11.51% | 0.00% |
1.18% |
HEX | EB | DF | FC |
Decimal | 235 | 223 | 252 |
Binary | 11101011 | 11011111 | 11111100 |
Octal | 353 | 337 | 374 |
Examples of css and html codes for elements with #EBDFFC color. Also use rgb(235,223,252) instead hex code.
.myTextColor { color: #EBDFFC; }
<p style="color:#EBDFFC">This sample text font color is #EBDFFC.</p>
This text font color is #EBDFFC.
.myBgColor { background-color: #EBDFFC; }
<div style="background-color:#EBDFFC">Inner text</div>
This div background color is #EBDFFC.
.myBorderColor { border: 1px solid #EBDFFC; }
<div style="border:3px solid #EBDFFC">Div</div>
This div border color is #EBDFFC.
.myOpacity80 { color: #EBDFFC; opacity: 0.8; }
<p style="color:#EBDFFC;opacity:0.8;">80%</p>
Text with #EBDFFC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBDFFC;}
<p style="text-shadow: 3px 3px 1px #EBDFFC">Text here.</p>
This text has shadow with #EBDFFC color.
.textShadow {text-shadow: 3px 3px 1px #EBDFFC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBDFFC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBDFFC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBDFFC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBDFFC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBDFFC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBDFFC; -webkit-box-shadow: 1px 1px 3px 2px #EBDFFC; box-shadow: 1px 1px 3px 2px #EBDFFC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBDFFC; -webkit-box-shadow: 1px 1px 3px 2px #EBDFFC; box-shadow:1px 1px 3px 2px #EBDFFC;">
Div content here</div>
This text has color #EBDFFC on black background.
This text has color #EBDFFC on white background.
This text has black color on #EBDFFC background.
This text has white color on #EBDFFC background.