HEX: #F5BBEC
RGB: (245,187,236)
#F5BBEC contains red, green and blue colors in about the same proportion. Web safe color of #F5BBEC is #FFCCFF (or #FCF).
#F5BBEC color RGB value is (245,187,236).
RGB: (245,187,236) (96%,73%,93%)
R 245 of 255 = 96%
G 187 of 255 = 73%
B 236 of 255 = 93%
R + G + B ~ 87%. #F5BBEC is light color.
R + G + B =
245 + 187 + 236 = 668 (100%)
R 245 of 668 ~ 36.68%
G 187 of 668 ~ 27.99%
B 236 of 668 ~ 35.33%
#F5BBEC color CMYK value is (0,24,4,4).
CMYK: (0,24,4,4) C0M24Y4K4 (0%,24%,4%,4%) (0.00/0.24/0.04/0.04)
F5 | BB | EC | |
---|---|---|---|
RGB | 245 | 187 | 236 |
HSL | 309° | 74.36% | 84.71% |
HSB/HSV | 309° | 23.67% | 96.08% |
CMYK | 0.00% | 23.67% | 3.67% |
3.92% |
HEX | F5 | BB | EC |
Decimal | 245 | 187 | 236 |
Binary | 11110101 | 10111011 | 11101100 |
Octal | 365 | 273 | 354 |
Examples of css and html codes for elements with #F5BBEC color. Also use rgb(245,187,236) instead hex code.
.myTextColor { color: #F5BBEC; }
<p style="color:#F5BBEC">This sample text font color is #F5BBEC.</p>
This text font color is #F5BBEC.
.myBgColor { background-color: #F5BBEC; }
<div style="background-color:#F5BBEC">Inner text</div>
This div background color is #F5BBEC.
.myBorderColor { border: 1px solid #F5BBEC; }
<div style="border:3px solid #F5BBEC">Div</div>
This div border color is #F5BBEC.
.myOpacity80 { color: #F5BBEC; opacity: 0.8; }
<p style="color:#F5BBEC;opacity:0.8;">80%</p>
Text with #F5BBEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5BBEC;}
<p style="text-shadow: 3px 3px 1px #F5BBEC">Text here.</p>
This text has shadow with #F5BBEC color.
.textShadow {text-shadow: 3px 3px 1px #F5BBEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5BBEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5BBEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5BBEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5BBEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5BBEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5BBEC; -webkit-box-shadow: 1px 1px 3px 2px #F5BBEC; box-shadow: 1px 1px 3px 2px #F5BBEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5BBEC; -webkit-box-shadow: 1px 1px 3px 2px #F5BBEC; box-shadow:1px 1px 3px 2px #F5BBEC;">
Div content here</div>
This text has color #F5BBEC on black background.
This text has color #F5BBEC on white background.
This text has black color on #F5BBEC background.
This text has white color on #F5BBEC background.