HEX: #EBD7FB
RGB: (235,215,251)
#EBD7FB contains red, green and blue colors in about the same proportion. Web safe color of #EBD7FB is #FFCCFF (or #FCF).
#EBD7FB color RGB value is (235,215,251).
RGB: (235,215,251) (92%,84%,98%)
R 235 of 255 = 92%
G 215 of 255 = 84%
B 251 of 255 = 98%
R + G + B ~ 91%. #EBD7FB is light color.
R + G + B =
235 + 215 + 251 = 701 (100%)
R 235 of 701 ~ 33.52%
G 215 of 701 ~ 30.67%
B 251 of 701 ~ 35.81%
#EBD7FB color CMYK value is (6,14,0,2).
CMYK: (6,14,0,2) C6M14Y0K2 (6%,14%,0%,2%) (0.06/0.14/0.00/0.02)
EB | D7 | FB | |
---|---|---|---|
RGB | 235 | 215 | 251 |
HSL | 273° | 81.82% | 91.37% |
HSB/HSV | 273° | 14.34% | 98.43% |
CMYK | 6.37% | 14.34% | 0.00% |
1.57% |
HEX | EB | D7 | FB |
Decimal | 235 | 215 | 251 |
Binary | 11101011 | 11010111 | 11111011 |
Octal | 353 | 327 | 373 |
Examples of css and html codes for elements with #EBD7FB color. Also use rgb(235,215,251) instead hex code.
.myTextColor { color: #EBD7FB; }
<p style="color:#EBD7FB">This sample text font color is #EBD7FB.</p>
This text font color is #EBD7FB.
.myBgColor { background-color: #EBD7FB; }
<div style="background-color:#EBD7FB">Inner text</div>
This div background color is #EBD7FB.
.myBorderColor { border: 1px solid #EBD7FB; }
<div style="border:3px solid #EBD7FB">Div</div>
This div border color is #EBD7FB.
.myOpacity80 { color: #EBD7FB; opacity: 0.8; }
<p style="color:#EBD7FB;opacity:0.8;">80%</p>
Text with #EBD7FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBD7FB;}
<p style="text-shadow: 3px 3px 1px #EBD7FB">Text here.</p>
This text has shadow with #EBD7FB color.
.textShadow {text-shadow: 3px 3px 1px #EBD7FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBD7FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBD7FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBD7FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBD7FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBD7FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBD7FB; -webkit-box-shadow: 1px 1px 3px 2px #EBD7FB; box-shadow: 1px 1px 3px 2px #EBD7FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBD7FB; -webkit-box-shadow: 1px 1px 3px 2px #EBD7FB; box-shadow:1px 1px 3px 2px #EBD7FB;">
Div content here</div>
This text has color #EBD7FB on black background.
This text has color #EBD7FB on white background.
This text has black color on #EBD7FB background.
This text has white color on #EBD7FB background.