HEX: #FEE59C
RGB: (254,229,156)
#FEE59C contains mainly red and green colors. Web safe color of #FEE59C is #FFCC99 (or #FC9).
#FEE59C color RGB value is (254,229,156).
RGB: (254,229,156) (100%,90%,61%)
R 254 of 255 = 100%
G 229 of 255 = 90%
B 156 of 255 = 61%
R + G + B ~ 84%. #FEE59C is quite light color.
R + G + B =
254 + 229 + 156 = 639 (100%)
R 254 of 639 ~ 39.75%
G 229 of 639 ~ 35.84%
B 156 of 639 ~ 24.41%
#FEE59C color CMYK value is (0,10,39,0).
CMYK: (0,10,39,0) C0M10Y39K0 (0%,10%,39%,0%) (0.00/0.10/0.39/0.00)
FE | E5 | 9C | |
---|---|---|---|
RGB | 254 | 229 | 156 |
HSL | 45° | 98.00% | 80.39% |
HSB/HSV | 45° | 38.58% | 99.61% |
CMYK | 0.00% | 9.84% | 38.58% |
0.39% |
HEX | FE | E5 | 9C |
Decimal | 254 | 229 | 156 |
Binary | 11111110 | 11100101 | 10011100 |
Octal | 376 | 345 | 234 |
Examples of css and html codes for elements with #FEE59C color. Also use rgb(254,229,156) instead hex code.
.myTextColor { color: #FEE59C; }
<p style="color:#FEE59C">This sample text font color is #FEE59C.</p>
This text font color is #FEE59C.
.myBgColor { background-color: #FEE59C; }
<div style="background-color:#FEE59C">Inner text</div>
This div background color is #FEE59C.
.myBorderColor { border: 1px solid #FEE59C; }
<div style="border:3px solid #FEE59C">Div</div>
This div border color is #FEE59C.
.myOpacity80 { color: #FEE59C; opacity: 0.8; }
<p style="color:#FEE59C;opacity:0.8;">80%</p>
Text with #FEE59C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEE59C;}
<p style="text-shadow: 3px 3px 1px #FEE59C">Text here.</p>
This text has shadow with #FEE59C color.
.textShadow {text-shadow: 3px 3px 1px #FEE59C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEE59C, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEE59C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEE59C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEE59C, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEE59C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEE59C; -webkit-box-shadow: 1px 1px 3px 2px #FEE59C; box-shadow: 1px 1px 3px 2px #FEE59C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEE59C; -webkit-box-shadow: 1px 1px 3px 2px #FEE59C; box-shadow:1px 1px 3px 2px #FEE59C;">
Div content here</div>
This text has color #FEE59C on black background.
This text has color #FEE59C on white background.
This text has black color on #FEE59C background.
This text has white color on #FEE59C background.