HEX: #FFC903
RGB: (255,201,3)
#FFC903 contains mainly red and green colors. Web safe color of #FFC903 is #FFCC00 (or #FC0).
#FFC903 color RGB value is (255,201,3).
RGB: (255,201,3) (100%,79%,1%)
R 255 of 255 = 100%
G 201 of 255 = 79%
B 3 of 255 = 1%
R + G + B ~ 60%. #FFC903 is middle color (not dark and not light).
R + G + B =
255 + 201 + 3 = 459 (100%)
R 255 of 459 ~ 55.56%
G 201 of 459 ~ 43.79%
B 3 of 459 ~ 0.65%
#FFC903 color CMYK value is (0,21,99,0).
CMYK: (0,21,99,0) C0M21Y99K0 (0%,21%,99%,0%) (0.00/0.21/0.99/0.00)
FF | C9 | 03 | |
---|---|---|---|
RGB | 255 | 201 | 3 |
HSL | 47° | 100.00% | 50.59% |
HSB/HSV | 47° | 98.82% | 100.00% |
CMYK | 0.00% | 21.18% | 98.82% |
0.00% |
HEX | FF | C9 | 03 |
Decimal | 255 | 201 | 3 |
Binary | 11111111 | 11001001 | 11 |
Octal | 377 | 311 | 3 |
Examples of css and html codes for elements with #FFC903 color. Also use rgb(255,201,3) instead hex code.
.myTextColor { color: #FFC903; }
<p style="color:#FFC903">This sample text font color is #FFC903.</p>
This text font color is #FFC903.
.myBgColor { background-color: #FFC903; }
<div style="background-color:#FFC903">Inner text</div>
This div background color is #FFC903.
.myBorderColor { border: 1px solid #FFC903; }
<div style="border:3px solid #FFC903">Div</div>
This div border color is #FFC903.
.myOpacity80 { color: #FFC903; opacity: 0.8; }
<p style="color:#FFC903;opacity:0.8;">80%</p>
Text with #FFC903 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFC903;}
<p style="text-shadow: 3px 3px 1px #FFC903">Text here.</p>
This text has shadow with #FFC903 color.
.textShadow {text-shadow: 3px 3px 1px #FFC903, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFC903, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFC903 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFC903, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFC903, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFC903 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFC903; -webkit-box-shadow: 1px 1px 3px 2px #FFC903; box-shadow: 1px 1px 3px 2px #FFC903; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFC903; -webkit-box-shadow: 1px 1px 3px 2px #FFC903; box-shadow:1px 1px 3px 2px #FFC903;">
Div content here</div>
This text has color #FFC903 on black background.
This text has color #FFC903 on white background.
This text has black color on #FFC903 background.
This text has white color on #FFC903 background.