HEX: #F6CEFB
RGB: (246,206,251)
#F6CEFB contains red, green and blue colors in about the same proportion. Web safe color of #F6CEFB is #FFCCFF (or #FCF).
#F6CEFB color RGB value is (246,206,251).
RGB: (246,206,251) (96%,81%,98%)
R 246 of 255 = 96%
G 206 of 255 = 81%
B 251 of 255 = 98%
R + G + B ~ 92%. #F6CEFB is light color.
R + G + B =
246 + 206 + 251 = 703 (100%)
R 246 of 703 ~ 34.99%
G 206 of 703 ~ 29.3%
B 251 of 703 ~ 35.7%
#F6CEFB color CMYK value is (2,18,0,2).
CMYK: (2,18,0,2) C2M18Y0K2 (2%,18%,0%,2%) (0.02/0.18/0.00/0.02)
F6 | CE | FB | |
---|---|---|---|
RGB | 246 | 206 | 251 |
HSL | 293° | 84.91% | 89.61% |
HSB/HSV | 293° | 17.93% | 98.43% |
CMYK | 1.99% | 17.93% | 0.00% |
1.57% |
HEX | F6 | CE | FB |
Decimal | 246 | 206 | 251 |
Binary | 11110110 | 11001110 | 11111011 |
Octal | 366 | 316 | 373 |
Examples of css and html codes for elements with #F6CEFB color. Also use rgb(246,206,251) instead hex code.
.myTextColor { color: #F6CEFB; }
<p style="color:#F6CEFB">This sample text font color is #F6CEFB.</p>
This text font color is #F6CEFB.
.myBgColor { background-color: #F6CEFB; }
<div style="background-color:#F6CEFB">Inner text</div>
This div background color is #F6CEFB.
.myBorderColor { border: 1px solid #F6CEFB; }
<div style="border:3px solid #F6CEFB">Div</div>
This div border color is #F6CEFB.
.myOpacity80 { color: #F6CEFB; opacity: 0.8; }
<p style="color:#F6CEFB;opacity:0.8;">80%</p>
Text with #F6CEFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6CEFB;}
<p style="text-shadow: 3px 3px 1px #F6CEFB">Text here.</p>
This text has shadow with #F6CEFB color.
.textShadow {text-shadow: 3px 3px 1px #F6CEFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6CEFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6CEFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6CEFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6CEFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6CEFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6CEFB; -webkit-box-shadow: 1px 1px 3px 2px #F6CEFB; box-shadow: 1px 1px 3px 2px #F6CEFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6CEFB; -webkit-box-shadow: 1px 1px 3px 2px #F6CEFB; box-shadow:1px 1px 3px 2px #F6CEFB;">
Div content here</div>
This text has color #F6CEFB on black background.
This text has color #F6CEFB on white background.
This text has black color on #F6CEFB background.
This text has white color on #F6CEFB background.