HEX: #F4B0CC
RGB: (244,176,204)
#F4B0CC contains mainly red and blue colors. Web safe color of #F4B0CC is #FF99CC (or #F9C).
#F4B0CC color RGB value is (244,176,204).
RGB: (244,176,204) (96%,69%,80%)
R 244 of 255 = 96%
G 176 of 255 = 69%
B 204 of 255 = 80%
R + G + B ~ 82%. #F4B0CC is quite light color.
R + G + B =
244 + 176 + 204 = 624 (100%)
R 244 of 624 ~ 39.1%
G 176 of 624 ~ 28.21%
B 204 of 624 ~ 32.69%
#F4B0CC color CMYK value is (0,28,16,4).
CMYK: (0,28,16,4) C0M28Y16K4 (0%,28%,16%,4%) (0.00/0.28/0.16/0.04)
F4 | B0 | CC | |
---|---|---|---|
RGB | 244 | 176 | 204 |
HSL | 335° | 75.56% | 82.35% |
HSB/HSV | 335° | 27.87% | 95.69% |
CMYK | 0.00% | 27.87% | 16.39% |
4.31% |
HEX | F4 | B0 | CC |
Decimal | 244 | 176 | 204 |
Binary | 11110100 | 10110000 | 11001100 |
Octal | 364 | 260 | 314 |
Examples of css and html codes for elements with #F4B0CC color. Also use rgb(244,176,204) instead hex code.
.myTextColor { color: #F4B0CC; }
<p style="color:#F4B0CC">This sample text font color is #F4B0CC.</p>
This text font color is #F4B0CC.
.myBgColor { background-color: #F4B0CC; }
<div style="background-color:#F4B0CC">Inner text</div>
This div background color is #F4B0CC.
.myBorderColor { border: 1px solid #F4B0CC; }
<div style="border:3px solid #F4B0CC">Div</div>
This div border color is #F4B0CC.
.myOpacity80 { color: #F4B0CC; opacity: 0.8; }
<p style="color:#F4B0CC;opacity:0.8;">80%</p>
Text with #F4B0CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F4B0CC;}
<p style="text-shadow: 3px 3px 1px #F4B0CC">Text here.</p>
This text has shadow with #F4B0CC color.
.textShadow {text-shadow: 3px 3px 1px #F4B0CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F4B0CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F4B0CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F4B0CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F4B0CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F4B0CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F4B0CC; -webkit-box-shadow: 1px 1px 3px 2px #F4B0CC; box-shadow: 1px 1px 3px 2px #F4B0CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F4B0CC; -webkit-box-shadow: 1px 1px 3px 2px #F4B0CC; box-shadow:1px 1px 3px 2px #F4B0CC;">
Div content here</div>
This text has color #F4B0CC on black background.
This text has color #F4B0CC on white background.
This text has black color on #F4B0CC background.
This text has white color on #F4B0CC background.