HEX: #F9CBEB
RGB: (249,203,235)
#F9CBEB contains red, green and blue colors in about the same proportion. Web safe color of #F9CBEB is #FFCCFF (or #FCF).
#F9CBEB color RGB value is (249,203,235).
RGB: (249,203,235) (98%,80%,92%)
R 249 of 255 = 98%
G 203 of 255 = 80%
B 235 of 255 = 92%
R + G + B ~ 90%. #F9CBEB is light color.
R + G + B =
249 + 203 + 235 = 687 (100%)
R 249 of 687 ~ 36.24%
G 203 of 687 ~ 29.55%
B 235 of 687 ~ 34.21%
#F9CBEB color CMYK value is (0,18,6,2).
CMYK: (0,18,6,2) C0M18Y6K2 (0%,18%,6%,2%) (0.00/0.18/0.06/0.02)
F9 | CB | EB | |
---|---|---|---|
RGB | 249 | 203 | 235 |
HSL | 318° | 79.31% | 88.63% |
HSB/HSV | 318° | 18.47% | 97.65% |
CMYK | 0.00% | 18.47% | 5.62% |
2.35% |
HEX | F9 | CB | EB |
Decimal | 249 | 203 | 235 |
Binary | 11111001 | 11001011 | 11101011 |
Octal | 371 | 313 | 353 |
Examples of css and html codes for elements with #F9CBEB color. Also use rgb(249,203,235) instead hex code.
.myTextColor { color: #F9CBEB; }
<p style="color:#F9CBEB">This sample text font color is #F9CBEB.</p>
This text font color is #F9CBEB.
.myBgColor { background-color: #F9CBEB; }
<div style="background-color:#F9CBEB">Inner text</div>
This div background color is #F9CBEB.
.myBorderColor { border: 1px solid #F9CBEB; }
<div style="border:3px solid #F9CBEB">Div</div>
This div border color is #F9CBEB.
.myOpacity80 { color: #F9CBEB; opacity: 0.8; }
<p style="color:#F9CBEB;opacity:0.8;">80%</p>
Text with #F9CBEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9CBEB;}
<p style="text-shadow: 3px 3px 1px #F9CBEB">Text here.</p>
This text has shadow with #F9CBEB color.
.textShadow {text-shadow: 3px 3px 1px #F9CBEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9CBEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9CBEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9CBEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9CBEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9CBEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9CBEB; -webkit-box-shadow: 1px 1px 3px 2px #F9CBEB; box-shadow: 1px 1px 3px 2px #F9CBEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9CBEB; -webkit-box-shadow: 1px 1px 3px 2px #F9CBEB; box-shadow:1px 1px 3px 2px #F9CBEB;">
Div content here</div>
This text has color #F9CBEB on black background.
This text has color #F9CBEB on white background.
This text has black color on #F9CBEB background.
This text has white color on #F9CBEB background.