HEX: #F5EBFF
RGB: (245,235,255)
#F5EBFF contains red, green and blue colors in about the same proportion. Web safe color of #F5EBFF is #FFFFFF (or #FFF).
#F5EBFF color RGB value is (245,235,255).
RGB: (245,235,255) (96%,92%,100%)
R 245 of 255 = 96%
G 235 of 255 = 92%
B 255 of 255 = 100%
R + G + B ~ 96%. #F5EBFF is light color.
R + G + B =
245 + 235 + 255 = 735 (100%)
R 245 of 735 ~ 33.33%
G 235 of 735 ~ 31.97%
B 255 of 735 ~ 34.69%
#F5EBFF color CMYK value is (4,8,0,0).
CMYK: (4,8,0,0) C4M8Y0K0 (4%,8%,0%,0%) (0.04/0.08/0.00/0.00)
F5 | EB | FF | |
---|---|---|---|
RGB | 245 | 235 | 255 |
HSL | 270° | 100.00% | 96.08% |
HSB/HSV | 270° | 7.84% | 100.00% |
CMYK | 3.92% | 7.84% | 0.00% |
0.00% |
HEX | F5 | EB | FF |
Decimal | 245 | 235 | 255 |
Binary | 11110101 | 11101011 | 11111111 |
Octal | 365 | 353 | 377 |
Examples of css and html codes for elements with #F5EBFF color. Also use rgb(245,235,255) instead hex code.
.myTextColor { color: #F5EBFF; }
<p style="color:#F5EBFF">This sample text font color is #F5EBFF.</p>
This text font color is #F5EBFF.
.myBgColor { background-color: #F5EBFF; }
<div style="background-color:#F5EBFF">Inner text</div>
This div background color is #F5EBFF.
.myBorderColor { border: 1px solid #F5EBFF; }
<div style="border:3px solid #F5EBFF">Div</div>
This div border color is #F5EBFF.
.myOpacity80 { color: #F5EBFF; opacity: 0.8; }
<p style="color:#F5EBFF;opacity:0.8;">80%</p>
Text with #F5EBFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5EBFF;}
<p style="text-shadow: 3px 3px 1px #F5EBFF">Text here.</p>
This text has shadow with #F5EBFF color.
.textShadow {text-shadow: 3px 3px 1px #F5EBFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5EBFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5EBFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5EBFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5EBFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5EBFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5EBFF; -webkit-box-shadow: 1px 1px 3px 2px #F5EBFF; box-shadow: 1px 1px 3px 2px #F5EBFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5EBFF; -webkit-box-shadow: 1px 1px 3px 2px #F5EBFF; box-shadow:1px 1px 3px 2px #F5EBFF;">
Div content here</div>
This text has color #F5EBFF on black background.
This text has color #F5EBFF on white background.
This text has black color on #F5EBFF background.
This text has white color on #F5EBFF background.