HEX: #FCB4BE
RGB: (252,180,190)
#FCB4BE contains mainly red color. Web safe color of #FCB4BE is #FFCCCC (or #FCC).
#FCB4BE color RGB value is (252,180,190).
RGB: (252,180,190) (99%,71%,75%)
R 252 of 255 = 99%
G 180 of 255 = 71%
B 190 of 255 = 75%
R + G + B ~ 82%. #FCB4BE is quite light color.
R + G + B =
252 + 180 + 190 = 622 (100%)
R 252 of 622 ~ 40.51%
G 180 of 622 ~ 28.94%
B 190 of 622 ~ 30.55%
#FCB4BE color CMYK value is (0,29,25,1).
CMYK: (0,29,25,1) C0M29Y25K1 (0%,29%,25%,1%) (0.00/0.29/0.25/0.01)
FC | B4 | BE | |
---|---|---|---|
RGB | 252 | 180 | 190 |
HSL | 352° | 92.31% | 84.71% |
HSB/HSV | 352° | 28.57% | 98.82% |
CMYK | 0.00% | 28.57% | 24.60% |
1.18% |
HEX | FC | B4 | BE |
Decimal | 252 | 180 | 190 |
Binary | 11111100 | 10110100 | 10111110 |
Octal | 374 | 264 | 276 |
Examples of css and html codes for elements with #FCB4BE color. Also use rgb(252,180,190) instead hex code.
.myTextColor { color: #FCB4BE; }
<p style="color:#FCB4BE">This sample text font color is #FCB4BE.</p>
This text font color is #FCB4BE.
.myBgColor { background-color: #FCB4BE; }
<div style="background-color:#FCB4BE">Inner text</div>
This div background color is #FCB4BE.
.myBorderColor { border: 1px solid #FCB4BE; }
<div style="border:3px solid #FCB4BE">Div</div>
This div border color is #FCB4BE.
.myOpacity80 { color: #FCB4BE; opacity: 0.8; }
<p style="color:#FCB4BE;opacity:0.8;">80%</p>
Text with #FCB4BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCB4BE;}
<p style="text-shadow: 3px 3px 1px #FCB4BE">Text here.</p>
This text has shadow with #FCB4BE color.
.textShadow {text-shadow: 3px 3px 1px #FCB4BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCB4BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCB4BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCB4BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCB4BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCB4BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCB4BE; -webkit-box-shadow: 1px 1px 3px 2px #FCB4BE; box-shadow: 1px 1px 3px 2px #FCB4BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCB4BE; -webkit-box-shadow: 1px 1px 3px 2px #FCB4BE; box-shadow:1px 1px 3px 2px #FCB4BE;">
Div content here</div>
This text has color #FCB4BE on black background.
This text has color #FCB4BE on white background.
This text has black color on #FCB4BE background.
This text has white color on #FCB4BE background.