HEX: #FECBD7
RGB: (254,203,215)
#FECBD7 contains red, green and blue colors in about the same proportion. Web safe color of #FECBD7 is #FFCCCC (or #FCC).
#FECBD7 color RGB value is (254,203,215).
RGB: (254,203,215) (100%,80%,84%)
R 254 of 255 = 100%
G 203 of 255 = 80%
B 215 of 255 = 84%
R + G + B ~ 88%. #FECBD7 is light color.
R + G + B =
254 + 203 + 215 = 672 (100%)
R 254 of 672 ~ 37.8%
G 203 of 672 ~ 30.21%
B 215 of 672 ~ 31.99%
#FECBD7 color CMYK value is (0,20,15,0).
CMYK: (0,20,15,0) C0M20Y15K0 (0%,20%,15%,0%) (0.00/0.20/0.15/0.00)
FE | CB | D7 | |
---|---|---|---|
RGB | 254 | 203 | 215 |
HSL | 346° | 96.23% | 89.61% |
HSB/HSV | 346° | 20.08% | 99.61% |
CMYK | 0.00% | 20.08% | 15.35% |
0.39% |
HEX | FE | CB | D7 |
Decimal | 254 | 203 | 215 |
Binary | 11111110 | 11001011 | 11010111 |
Octal | 376 | 313 | 327 |
Examples of css and html codes for elements with #FECBD7 color. Also use rgb(254,203,215) instead hex code.
.myTextColor { color: #FECBD7; }
<p style="color:#FECBD7">This sample text font color is #FECBD7.</p>
This text font color is #FECBD7.
.myBgColor { background-color: #FECBD7; }
<div style="background-color:#FECBD7">Inner text</div>
This div background color is #FECBD7.
.myBorderColor { border: 1px solid #FECBD7; }
<div style="border:3px solid #FECBD7">Div</div>
This div border color is #FECBD7.
.myOpacity80 { color: #FECBD7; opacity: 0.8; }
<p style="color:#FECBD7;opacity:0.8;">80%</p>
Text with #FECBD7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FECBD7;}
<p style="text-shadow: 3px 3px 1px #FECBD7">Text here.</p>
This text has shadow with #FECBD7 color.
.textShadow {text-shadow: 3px 3px 1px #FECBD7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FECBD7, 5px 5px 20px red">Text here.</p>
This text has shadow with #FECBD7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FECBD7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FECBD7, Direction=45, Strength=4)">Text</p>
This text has shadow with #FECBD7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FECBD7; -webkit-box-shadow: 1px 1px 3px 2px #FECBD7; box-shadow: 1px 1px 3px 2px #FECBD7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FECBD7; -webkit-box-shadow: 1px 1px 3px 2px #FECBD7; box-shadow:1px 1px 3px 2px #FECBD7;">
Div content here</div>
This text has color #FECBD7 on black background.
This text has color #FECBD7 on white background.
This text has black color on #FECBD7 background.
This text has white color on #FECBD7 background.