HEX: #F5C7EE
RGB: (245,199,238)
#F5C7EE contains red, green and blue colors in about the same proportion. Web safe color of #F5C7EE is #FFCCFF (or #FCF).
#F5C7EE color RGB value is (245,199,238).
RGB: (245,199,238) (96%,78%,93%)
R 245 of 255 = 96%
G 199 of 255 = 78%
B 238 of 255 = 93%
R + G + B ~ 89%. #F5C7EE is light color.
R + G + B =
245 + 199 + 238 = 682 (100%)
R 245 of 682 ~ 35.92%
G 199 of 682 ~ 29.18%
B 238 of 682 ~ 34.9%
#F5C7EE color CMYK value is (0,19,3,4).
CMYK: (0,19,3,4) C0M19Y3K4 (0%,19%,3%,4%) (0.00/0.19/0.03/0.04)
F5 | C7 | EE | |
---|---|---|---|
RGB | 245 | 199 | 238 |
HSL | 309° | 69.70% | 87.06% |
HSB/HSV | 309° | 18.78% | 96.08% |
CMYK | 0.00% | 18.78% | 2.86% |
3.92% |
HEX | F5 | C7 | EE |
Decimal | 245 | 199 | 238 |
Binary | 11110101 | 11000111 | 11101110 |
Octal | 365 | 307 | 356 |
Examples of css and html codes for elements with #F5C7EE color. Also use rgb(245,199,238) instead hex code.
.myTextColor { color: #F5C7EE; }
<p style="color:#F5C7EE">This sample text font color is #F5C7EE.</p>
This text font color is #F5C7EE.
.myBgColor { background-color: #F5C7EE; }
<div style="background-color:#F5C7EE">Inner text</div>
This div background color is #F5C7EE.
.myBorderColor { border: 1px solid #F5C7EE; }
<div style="border:3px solid #F5C7EE">Div</div>
This div border color is #F5C7EE.
.myOpacity80 { color: #F5C7EE; opacity: 0.8; }
<p style="color:#F5C7EE;opacity:0.8;">80%</p>
Text with #F5C7EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5C7EE;}
<p style="text-shadow: 3px 3px 1px #F5C7EE">Text here.</p>
This text has shadow with #F5C7EE color.
.textShadow {text-shadow: 3px 3px 1px #F5C7EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5C7EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5C7EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5C7EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5C7EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5C7EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5C7EE; -webkit-box-shadow: 1px 1px 3px 2px #F5C7EE; box-shadow: 1px 1px 3px 2px #F5C7EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5C7EE; -webkit-box-shadow: 1px 1px 3px 2px #F5C7EE; box-shadow:1px 1px 3px 2px #F5C7EE;">
Div content here</div>
This text has color #F5C7EE on black background.
This text has color #F5C7EE on white background.
This text has black color on #F5C7EE background.
This text has white color on #F5C7EE background.