HEX: #FCE48C
RGB: (252,228,140)
#FCE48C contains mainly red and green colors. Web safe color of #FCE48C is #FFCC99 (or #FC9).
#FCE48C color RGB value is (252,228,140).
RGB: (252,228,140) (99%,89%,55%)
R 252 of 255 = 99%
G 228 of 255 = 89%
B 140 of 255 = 55%
R + G + B ~ 81%. #FCE48C is quite light color.
R + G + B =
252 + 228 + 140 = 620 (100%)
R 252 of 620 ~ 40.65%
G 228 of 620 ~ 36.77%
B 140 of 620 ~ 22.58%
#FCE48C color CMYK value is (0,10,44,1).
CMYK: (0,10,44,1) C0M10Y44K1 (0%,10%,44%,1%) (0.00/0.10/0.44/0.01)
FC | E4 | 8C | |
---|---|---|---|
RGB | 252 | 228 | 140 |
HSL | 47° | 94.92% | 76.86% |
HSB/HSV | 47° | 44.44% | 98.82% |
CMYK | 0.00% | 9.52% | 44.44% |
1.18% |
HEX | FC | E4 | 8C |
Decimal | 252 | 228 | 140 |
Binary | 11111100 | 11100100 | 10001100 |
Octal | 374 | 344 | 214 |
Examples of css and html codes for elements with #FCE48C color. Also use rgb(252,228,140) instead hex code.
.myTextColor { color: #FCE48C; }
<p style="color:#FCE48C">This sample text font color is #FCE48C.</p>
This text font color is #FCE48C.
.myBgColor { background-color: #FCE48C; }
<div style="background-color:#FCE48C">Inner text</div>
This div background color is #FCE48C.
.myBorderColor { border: 1px solid #FCE48C; }
<div style="border:3px solid #FCE48C">Div</div>
This div border color is #FCE48C.
.myOpacity80 { color: #FCE48C; opacity: 0.8; }
<p style="color:#FCE48C;opacity:0.8;">80%</p>
Text with #FCE48C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCE48C;}
<p style="text-shadow: 3px 3px 1px #FCE48C">Text here.</p>
This text has shadow with #FCE48C color.
.textShadow {text-shadow: 3px 3px 1px #FCE48C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCE48C, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCE48C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCE48C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCE48C, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCE48C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCE48C; -webkit-box-shadow: 1px 1px 3px 2px #FCE48C; box-shadow: 1px 1px 3px 2px #FCE48C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCE48C; -webkit-box-shadow: 1px 1px 3px 2px #FCE48C; box-shadow:1px 1px 3px 2px #FCE48C;">
Div content here</div>
This text has color #FCE48C on black background.
This text has color #FCE48C on white background.
This text has black color on #FCE48C background.
This text has white color on #FCE48C background.