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