HEX: #FCBDDE
RGB: (252,189,222)
#FCBDDE contains mainly red and blue colors. Web safe color of #FCBDDE is #FFCCCC (or #FCC).
#FCBDDE color RGB value is (252,189,222).
RGB: (252,189,222) (99%,74%,87%)
R 252 of 255 = 99%
G 189 of 255 = 74%
B 222 of 255 = 87%
R + G + B ~ 87%. #FCBDDE is light color.
R + G + B =
252 + 189 + 222 = 663 (100%)
R 252 of 663 ~ 38.01%
G 189 of 663 ~ 28.51%
B 222 of 663 ~ 33.48%
#FCBDDE color CMYK value is (0,25,12,1).
CMYK: (0,25,12,1) C0M25Y12K1 (0%,25%,12%,1%) (0.00/0.25/0.12/0.01)
FC | BD | DE | |
---|---|---|---|
RGB | 252 | 189 | 222 |
HSL | 329° | 91.30% | 86.47% |
HSB/HSV | 329° | 25.00% | 98.82% |
CMYK | 0.00% | 25.00% | 11.90% |
1.18% |
HEX | FC | BD | DE |
Decimal | 252 | 189 | 222 |
Binary | 11111100 | 10111101 | 11011110 |
Octal | 374 | 275 | 336 |
Examples of css and html codes for elements with #FCBDDE color. Also use rgb(252,189,222) instead hex code.
.myTextColor { color: #FCBDDE; }
<p style="color:#FCBDDE">This sample text font color is #FCBDDE.</p>
This text font color is #FCBDDE.
.myBgColor { background-color: #FCBDDE; }
<div style="background-color:#FCBDDE">Inner text</div>
This div background color is #FCBDDE.
.myBorderColor { border: 1px solid #FCBDDE; }
<div style="border:3px solid #FCBDDE">Div</div>
This div border color is #FCBDDE.
.myOpacity80 { color: #FCBDDE; opacity: 0.8; }
<p style="color:#FCBDDE;opacity:0.8;">80%</p>
Text with #FCBDDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCBDDE;}
<p style="text-shadow: 3px 3px 1px #FCBDDE">Text here.</p>
This text has shadow with #FCBDDE color.
.textShadow {text-shadow: 3px 3px 1px #FCBDDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCBDDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCBDDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCBDDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCBDDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCBDDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCBDDE; -webkit-box-shadow: 1px 1px 3px 2px #FCBDDE; box-shadow: 1px 1px 3px 2px #FCBDDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCBDDE; -webkit-box-shadow: 1px 1px 3px 2px #FCBDDE; box-shadow:1px 1px 3px 2px #FCBDDE;">
Div content here</div>
This text has color #FCBDDE on black background.
This text has color #FCBDDE on white background.
This text has black color on #FCBDDE background.
This text has white color on #FCBDDE background.