HEX: #FFEA63
RGB: (255,234,99)
#FFEA63 contains mainly red and green colors. Web safe color of #FFEA63 is #FFFF66 (or #FF6).
#FFEA63 color RGB value is (255,234,99).
RGB: (255,234,99) (100%,92%,39%)
R 255 of 255 = 100%
G 234 of 255 = 92%
B 99 of 255 = 39%
R + G + B ~ 77%. #FFEA63 is quite light color.
R + G + B =
255 + 234 + 99 = 588 (100%)
R 255 of 588 ~ 43.37%
G 234 of 588 ~ 39.8%
B 99 of 588 ~ 16.84%
#FFEA63 color CMYK value is (0,8,61,0).
CMYK: (0,8,61,0) C0M8Y61K0 (0%,8%,61%,0%) (0.00/0.08/0.61/0.00)
FF | EA | 63 | |
---|---|---|---|
RGB | 255 | 234 | 99 |
HSL | 52° | 100.00% | 69.41% |
HSB/HSV | 52° | 61.18% | 100.00% |
CMYK | 0.00% | 8.24% | 61.18% |
0.00% |
HEX | FF | EA | 63 |
Decimal | 255 | 234 | 99 |
Binary | 11111111 | 11101010 | 1100011 |
Octal | 377 | 352 | 143 |
Examples of css and html codes for elements with #FFEA63 color. Also use rgb(255,234,99) instead hex code.
.myTextColor { color: #FFEA63; }
<p style="color:#FFEA63">This sample text font color is #FFEA63.</p>
This text font color is #FFEA63.
.myBgColor { background-color: #FFEA63; }
<div style="background-color:#FFEA63">Inner text</div>
This div background color is #FFEA63.
.myBorderColor { border: 1px solid #FFEA63; }
<div style="border:3px solid #FFEA63">Div</div>
This div border color is #FFEA63.
.myOpacity80 { color: #FFEA63; opacity: 0.8; }
<p style="color:#FFEA63;opacity:0.8;">80%</p>
Text with #FFEA63 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFEA63;}
<p style="text-shadow: 3px 3px 1px #FFEA63">Text here.</p>
This text has shadow with #FFEA63 color.
.textShadow {text-shadow: 3px 3px 1px #FFEA63, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFEA63, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFEA63 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFEA63, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFEA63, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFEA63 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFEA63; -webkit-box-shadow: 1px 1px 3px 2px #FFEA63; box-shadow: 1px 1px 3px 2px #FFEA63; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFEA63; -webkit-box-shadow: 1px 1px 3px 2px #FFEA63; box-shadow:1px 1px 3px 2px #FFEA63;">
Div content here</div>
This text has color #FFEA63 on black background.
This text has color #FFEA63 on white background.
This text has black color on #FFEA63 background.
This text has white color on #FFEA63 background.