HEX: #F2BCEF
RGB: (242,188,239)
#F2BCEF contains red, green and blue colors in about the same proportion. Web safe color of #F2BCEF is #FFCCFF (or #FCF).
#F2BCEF color RGB value is (242,188,239).
RGB: (242,188,239) (95%,74%,94%)
R 242 of 255 = 95%
G 188 of 255 = 74%
B 239 of 255 = 94%
R + G + B ~ 88%. #F2BCEF is light color.
R + G + B =
242 + 188 + 239 = 669 (100%)
R 242 of 669 ~ 36.17%
G 188 of 669 ~ 28.1%
B 239 of 669 ~ 35.72%
#F2BCEF color CMYK value is (0,22,1,5).
CMYK: (0,22,1,5) C0M22Y1K5 (0%,22%,1%,5%) (0.00/0.22/0.01/0.05)
F2 | BC | EF | |
---|---|---|---|
RGB | 242 | 188 | 239 |
HSL | 303° | 67.50% | 84.31% |
HSB/HSV | 303° | 22.31% | 94.90% |
CMYK | 0.00% | 22.31% | 1.24% |
5.10% |
HEX | F2 | BC | EF |
Decimal | 242 | 188 | 239 |
Binary | 11110010 | 10111100 | 11101111 |
Octal | 362 | 274 | 357 |
Examples of css and html codes for elements with #F2BCEF color. Also use rgb(242,188,239) instead hex code.
.myTextColor { color: #F2BCEF; }
<p style="color:#F2BCEF">This sample text font color is #F2BCEF.</p>
This text font color is #F2BCEF.
.myBgColor { background-color: #F2BCEF; }
<div style="background-color:#F2BCEF">Inner text</div>
This div background color is #F2BCEF.
.myBorderColor { border: 1px solid #F2BCEF; }
<div style="border:3px solid #F2BCEF">Div</div>
This div border color is #F2BCEF.
.myOpacity80 { color: #F2BCEF; opacity: 0.8; }
<p style="color:#F2BCEF;opacity:0.8;">80%</p>
Text with #F2BCEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F2BCEF;}
<p style="text-shadow: 3px 3px 1px #F2BCEF">Text here.</p>
This text has shadow with #F2BCEF color.
.textShadow {text-shadow: 3px 3px 1px #F2BCEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F2BCEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F2BCEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F2BCEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F2BCEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F2BCEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F2BCEF; -webkit-box-shadow: 1px 1px 3px 2px #F2BCEF; box-shadow: 1px 1px 3px 2px #F2BCEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F2BCEF; -webkit-box-shadow: 1px 1px 3px 2px #F2BCEF; box-shadow:1px 1px 3px 2px #F2BCEF;">
Div content here</div>
This text has color #F2BCEF on black background.
This text has color #F2BCEF on white background.
This text has black color on #F2BCEF background.
This text has white color on #F2BCEF background.