HEX: #FCC09B
RGB: (252,192,155)
#FCC09B contains mainly red color. Web safe color of #FCC09B is #FFCC99 (or #FC9).
#FCC09B color RGB value is (252,192,155).
RGB: (252,192,155) (99%,75%,61%)
R 252 of 255 = 99%
G 192 of 255 = 75%
B 155 of 255 = 61%
R + G + B ~ 78%. #FCC09B is quite light color.
R + G + B =
252 + 192 + 155 = 599 (100%)
R 252 of 599 ~ 42.07%
G 192 of 599 ~ 32.05%
B 155 of 599 ~ 25.88%
#FCC09B color CMYK value is (0,24,38,1).
CMYK: (0,24,38,1) C0M24Y38K1 (0%,24%,38%,1%) (0.00/0.24/0.38/0.01)
FC | C0 | 9B | |
---|---|---|---|
RGB | 252 | 192 | 155 |
HSL | 23° | 94.17% | 79.80% |
HSB/HSV | 23° | 38.49% | 98.82% |
CMYK | 0.00% | 23.81% | 38.49% |
1.18% |
HEX | FC | C0 | 9B |
Decimal | 252 | 192 | 155 |
Binary | 11111100 | 11000000 | 10011011 |
Octal | 374 | 300 | 233 |
Examples of css and html codes for elements with #FCC09B color. Also use rgb(252,192,155) instead hex code.
.myTextColor { color: #FCC09B; }
<p style="color:#FCC09B">This sample text font color is #FCC09B.</p>
This text font color is #FCC09B.
.myBgColor { background-color: #FCC09B; }
<div style="background-color:#FCC09B">Inner text</div>
This div background color is #FCC09B.
.myBorderColor { border: 1px solid #FCC09B; }
<div style="border:3px solid #FCC09B">Div</div>
This div border color is #FCC09B.
.myOpacity80 { color: #FCC09B; opacity: 0.8; }
<p style="color:#FCC09B;opacity:0.8;">80%</p>
Text with #FCC09B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCC09B;}
<p style="text-shadow: 3px 3px 1px #FCC09B">Text here.</p>
This text has shadow with #FCC09B color.
.textShadow {text-shadow: 3px 3px 1px #FCC09B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCC09B, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCC09B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCC09B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCC09B, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCC09B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCC09B; -webkit-box-shadow: 1px 1px 3px 2px #FCC09B; box-shadow: 1px 1px 3px 2px #FCC09B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCC09B; -webkit-box-shadow: 1px 1px 3px 2px #FCC09B; box-shadow:1px 1px 3px 2px #FCC09B;">
Div content here</div>
This text has color #FCC09B on black background.
This text has color #FCC09B on white background.
This text has black color on #FCC09B background.
This text has white color on #FCC09B background.