HEX: #FFCEF6
RGB: (255,206,246)
#FFCEF6 contains red, green and blue colors in about the same proportion. Web safe color of #FFCEF6 is #FFCCFF (or #FCF).
#FFCEF6 color RGB value is (255,206,246).
RGB: (255,206,246) (100%,81%,96%)
R 255 of 255 = 100%
G 206 of 255 = 81%
B 246 of 255 = 96%
R + G + B ~ 92%. #FFCEF6 is light color.
R + G + B =
255 + 206 + 246 = 707 (100%)
R 255 of 707 ~ 36.07%
G 206 of 707 ~ 29.14%
B 246 of 707 ~ 34.79%
#FFCEF6 color CMYK value is (0,19,4,0).
CMYK: (0,19,4,0) C0M19Y4K0 (0%,19%,4%,0%) (0.00/0.19/0.04/0.00)
FF | CE | F6 | |
---|---|---|---|
RGB | 255 | 206 | 246 |
HSL | 311° | 100.00% | 90.39% |
HSB/HSV | 311° | 19.22% | 100.00% |
CMYK | 0.00% | 19.22% | 3.53% |
0.00% |
HEX | FF | CE | F6 |
Decimal | 255 | 206 | 246 |
Binary | 11111111 | 11001110 | 11110110 |
Octal | 377 | 316 | 366 |
Examples of css and html codes for elements with #FFCEF6 color. Also use rgb(255,206,246) instead hex code.
.myTextColor { color: #FFCEF6; }
<p style="color:#FFCEF6">This sample text font color is #FFCEF6.</p>
This text font color is #FFCEF6.
.myBgColor { background-color: #FFCEF6; }
<div style="background-color:#FFCEF6">Inner text</div>
This div background color is #FFCEF6.
.myBorderColor { border: 1px solid #FFCEF6; }
<div style="border:3px solid #FFCEF6">Div</div>
This div border color is #FFCEF6.
.myOpacity80 { color: #FFCEF6; opacity: 0.8; }
<p style="color:#FFCEF6;opacity:0.8;">80%</p>
Text with #FFCEF6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFCEF6;}
<p style="text-shadow: 3px 3px 1px #FFCEF6">Text here.</p>
This text has shadow with #FFCEF6 color.
.textShadow {text-shadow: 3px 3px 1px #FFCEF6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFCEF6, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFCEF6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFCEF6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFCEF6, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFCEF6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFCEF6; -webkit-box-shadow: 1px 1px 3px 2px #FFCEF6; box-shadow: 1px 1px 3px 2px #FFCEF6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFCEF6; -webkit-box-shadow: 1px 1px 3px 2px #FFCEF6; box-shadow:1px 1px 3px 2px #FFCEF6;">
Div content here</div>
This text has color #FFCEF6 on black background.
This text has color #FFCEF6 on white background.
This text has black color on #FFCEF6 background.
This text has white color on #FFCEF6 background.