HEX: #FFCE0F
RGB: (255,206,15)
#FFCE0F contains mainly red and green colors. Web safe color of #FFCE0F is #FFCC00 (or #FC0).
#FFCE0F color RGB value is (255,206,15).
RGB: (255,206,15) (100%,81%,6%)
R 255 of 255 = 100%
G 206 of 255 = 81%
B 15 of 255 = 6%
R + G + B ~ 62%. #FFCE0F is quite light color.
R + G + B =
255 + 206 + 15 = 476 (100%)
R 255 of 476 ~ 53.57%
G 206 of 476 ~ 43.28%
B 15 of 476 ~ 3.15%
#FFCE0F color CMYK value is (0,19,94,0).
CMYK: (0,19,94,0) C0M19Y94K0 (0%,19%,94%,0%) (0.00/0.19/0.94/0.00)
FF | CE | 0F | |
---|---|---|---|
RGB | 255 | 206 | 15 |
HSL | 48° | 100.00% | 52.94% |
HSB/HSV | 48° | 94.12% | 100.00% |
CMYK | 0.00% | 19.22% | 94.12% |
0.00% |
HEX | FF | CE | 0F |
Decimal | 255 | 206 | 15 |
Binary | 11111111 | 11001110 | 1111 |
Octal | 377 | 316 | 17 |
Examples of css and html codes for elements with #FFCE0F color. Also use rgb(255,206,15) instead hex code.
.myTextColor { color: #FFCE0F; }
<p style="color:#FFCE0F">This sample text font color is #FFCE0F.</p>
This text font color is #FFCE0F.
.myBgColor { background-color: #FFCE0F; }
<div style="background-color:#FFCE0F">Inner text</div>
This div background color is #FFCE0F.
.myBorderColor { border: 1px solid #FFCE0F; }
<div style="border:3px solid #FFCE0F">Div</div>
This div border color is #FFCE0F.
.myOpacity80 { color: #FFCE0F; opacity: 0.8; }
<p style="color:#FFCE0F;opacity:0.8;">80%</p>
Text with #FFCE0F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFCE0F;}
<p style="text-shadow: 3px 3px 1px #FFCE0F">Text here.</p>
This text has shadow with #FFCE0F color.
.textShadow {text-shadow: 3px 3px 1px #FFCE0F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFCE0F, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFCE0F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFCE0F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFCE0F, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFCE0F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFCE0F; -webkit-box-shadow: 1px 1px 3px 2px #FFCE0F; box-shadow: 1px 1px 3px 2px #FFCE0F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFCE0F; -webkit-box-shadow: 1px 1px 3px 2px #FFCE0F; box-shadow:1px 1px 3px 2px #FFCE0F;">
Div content here</div>
This text has color #FFCE0F on black background.
This text has color #FFCE0F on white background.
This text has black color on #FFCE0F background.
This text has white color on #FFCE0F background.