HEX: #F0CBEA
RGB: (240,203,234)
#F0CBEA contains red, green and blue colors in about the same proportion. Web safe color of #F0CBEA is #FFCCFF (or #FCF).
#F0CBEA color RGB value is (240,203,234).
RGB: (240,203,234) (94%,80%,92%)
R 240 of 255 = 94%
G 203 of 255 = 80%
B 234 of 255 = 92%
R + G + B ~ 89%. #F0CBEA is light color.
R + G + B =
240 + 203 + 234 = 677 (100%)
R 240 of 677 ~ 35.45%
G 203 of 677 ~ 29.99%
B 234 of 677 ~ 34.56%
#F0CBEA color CMYK value is (0,15,3,6).
CMYK: (0,15,3,6) C0M15Y3K6 (0%,15%,3%,6%) (0.00/0.15/0.03/0.06)
F0 | CB | EA | |
---|---|---|---|
RGB | 240 | 203 | 234 |
HSL | 310° | 55.22% | 86.86% |
HSB/HSV | 310° | 15.42% | 94.12% |
CMYK | 0.00% | 15.42% | 2.50% |
5.88% |
HEX | F0 | CB | EA |
Decimal | 240 | 203 | 234 |
Binary | 11110000 | 11001011 | 11101010 |
Octal | 360 | 313 | 352 |
Examples of css and html codes for elements with #F0CBEA color. Also use rgb(240,203,234) instead hex code.
.myTextColor { color: #F0CBEA; }
<p style="color:#F0CBEA">This sample text font color is #F0CBEA.</p>
This text font color is #F0CBEA.
.myBgColor { background-color: #F0CBEA; }
<div style="background-color:#F0CBEA">Inner text</div>
This div background color is #F0CBEA.
.myBorderColor { border: 1px solid #F0CBEA; }
<div style="border:3px solid #F0CBEA">Div</div>
This div border color is #F0CBEA.
.myOpacity80 { color: #F0CBEA; opacity: 0.8; }
<p style="color:#F0CBEA;opacity:0.8;">80%</p>
Text with #F0CBEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0CBEA;}
<p style="text-shadow: 3px 3px 1px #F0CBEA">Text here.</p>
This text has shadow with #F0CBEA color.
.textShadow {text-shadow: 3px 3px 1px #F0CBEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0CBEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0CBEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0CBEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0CBEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0CBEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0CBEA; -webkit-box-shadow: 1px 1px 3px 2px #F0CBEA; box-shadow: 1px 1px 3px 2px #F0CBEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0CBEA; -webkit-box-shadow: 1px 1px 3px 2px #F0CBEA; box-shadow:1px 1px 3px 2px #F0CBEA;">
Div content here</div>
This text has color #F0CBEA on black background.
This text has color #F0CBEA on white background.
This text has black color on #F0CBEA background.
This text has white color on #F0CBEA background.