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