HEX: #F0D5FF
RGB: (240,213,255)
#F0D5FF contains red, green and blue colors in about the same proportion. Web safe color of #F0D5FF is #FFCCFF (or #FCF).
#F0D5FF color RGB value is (240,213,255).
RGB: (240,213,255) (94%,84%,100%)
R 240 of 255 = 94%
G 213 of 255 = 84%
B 255 of 255 = 100%
R + G + B ~ 93%. #F0D5FF is light color.
R + G + B =
240 + 213 + 255 = 708 (100%)
R 240 of 708 ~ 33.9%
G 213 of 708 ~ 30.08%
B 255 of 708 ~ 36.02%
#F0D5FF color CMYK value is (6,16,0,0).
CMYK: (6,16,0,0) C6M16Y0K0 (6%,16%,0%,0%) (0.06/0.16/0.00/0.00)
F0 | D5 | FF | |
---|---|---|---|
RGB | 240 | 213 | 255 |
HSL | 279° | 100.00% | 91.76% |
HSB/HSV | 279° | 16.47% | 100.00% |
CMYK | 5.88% | 16.47% | 0.00% |
0.00% |
HEX | F0 | D5 | FF |
Decimal | 240 | 213 | 255 |
Binary | 11110000 | 11010101 | 11111111 |
Octal | 360 | 325 | 377 |
Examples of css and html codes for elements with #F0D5FF color. Also use rgb(240,213,255) instead hex code.
.myTextColor { color: #F0D5FF; }
<p style="color:#F0D5FF">This sample text font color is #F0D5FF.</p>
This text font color is #F0D5FF.
.myBgColor { background-color: #F0D5FF; }
<div style="background-color:#F0D5FF">Inner text</div>
This div background color is #F0D5FF.
.myBorderColor { border: 1px solid #F0D5FF; }
<div style="border:3px solid #F0D5FF">Div</div>
This div border color is #F0D5FF.
.myOpacity80 { color: #F0D5FF; opacity: 0.8; }
<p style="color:#F0D5FF;opacity:0.8;">80%</p>
Text with #F0D5FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0D5FF;}
<p style="text-shadow: 3px 3px 1px #F0D5FF">Text here.</p>
This text has shadow with #F0D5FF color.
.textShadow {text-shadow: 3px 3px 1px #F0D5FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0D5FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0D5FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0D5FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0D5FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0D5FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0D5FF; -webkit-box-shadow: 1px 1px 3px 2px #F0D5FF; box-shadow: 1px 1px 3px 2px #F0D5FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0D5FF; -webkit-box-shadow: 1px 1px 3px 2px #F0D5FF; box-shadow:1px 1px 3px 2px #F0D5FF;">
Div content here</div>
This text has color #F0D5FF on black background.
This text has color #F0D5FF on white background.
This text has black color on #F0D5FF background.
This text has white color on #F0D5FF background.