HEX: #F5D7FF
RGB: (245,215,255)
#F5D7FF contains red, green and blue colors in about the same proportion. Web safe color of #F5D7FF is #FFCCFF (or #FCF).
#F5D7FF color RGB value is (245,215,255).
RGB: (245,215,255) (96%,84%,100%)
R 245 of 255 = 96%
G 215 of 255 = 84%
B 255 of 255 = 100%
R + G + B ~ 93%. #F5D7FF is light color.
R + G + B =
245 + 215 + 255 = 715 (100%)
R 245 of 715 ~ 34.27%
G 215 of 715 ~ 30.07%
B 255 of 715 ~ 35.66%
#F5D7FF color CMYK value is (4,16,0,0).
CMYK: (4,16,0,0) C4M16Y0K0 (4%,16%,0%,0%) (0.04/0.16/0.00/0.00)
F5 | D7 | FF | |
---|---|---|---|
RGB | 245 | 215 | 255 |
HSL | 285° | 100.00% | 92.16% |
HSB/HSV | 285° | 15.69% | 100.00% |
CMYK | 3.92% | 15.69% | 0.00% |
0.00% |
HEX | F5 | D7 | FF |
Decimal | 245 | 215 | 255 |
Binary | 11110101 | 11010111 | 11111111 |
Octal | 365 | 327 | 377 |
Examples of css and html codes for elements with #F5D7FF color. Also use rgb(245,215,255) instead hex code.
.myTextColor { color: #F5D7FF; }
<p style="color:#F5D7FF">This sample text font color is #F5D7FF.</p>
This text font color is #F5D7FF.
.myBgColor { background-color: #F5D7FF; }
<div style="background-color:#F5D7FF">Inner text</div>
This div background color is #F5D7FF.
.myBorderColor { border: 1px solid #F5D7FF; }
<div style="border:3px solid #F5D7FF">Div</div>
This div border color is #F5D7FF.
.myOpacity80 { color: #F5D7FF; opacity: 0.8; }
<p style="color:#F5D7FF;opacity:0.8;">80%</p>
Text with #F5D7FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5D7FF;}
<p style="text-shadow: 3px 3px 1px #F5D7FF">Text here.</p>
This text has shadow with #F5D7FF color.
.textShadow {text-shadow: 3px 3px 1px #F5D7FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5D7FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5D7FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5D7FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5D7FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5D7FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5D7FF; -webkit-box-shadow: 1px 1px 3px 2px #F5D7FF; box-shadow: 1px 1px 3px 2px #F5D7FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5D7FF; -webkit-box-shadow: 1px 1px 3px 2px #F5D7FF; box-shadow:1px 1px 3px 2px #F5D7FF;">
Div content here</div>
This text has color #F5D7FF on black background.
This text has color #F5D7FF on white background.
This text has black color on #F5D7FF background.
This text has white color on #F5D7FF background.