HEX: #FFA500
RGB: (255,165,0)
Color name is Orange. #FFA500 contains mainly red color. Web safe color of #FFA500 is #FF9900 (or #F90).
#FFA500 color RGB value is (255,165,0).
RGB: (255,165,0) (100%,65%,0%)
R 255 of 255 = 100%
G 165 of 255 = 65%
B 0 of 255 = 0%
R + G + B ~ 55%. #FFA500 is middle color (not dark and not light).
R + G + B =
255 + 165 + 0 = 420 (100%)
R 255 of 420 ~ 60.71%
G 165 of 420 ~ 39.29%
B 0 of 420 ~ 0%
#FFA500 color CMYK value is (0,35,100,0).
CMYK: (0,35,100,0) C0M35Y100K0 (0%,35%,100%,0%) (0.00/0.35/1.00/0.00)
FF | A5 | 00 | |
---|---|---|---|
RGB | 255 | 165 | 0 |
HSL | 39° | 100.00% | 50.00% |
HSB/HSV | 39° | 100.00% | 100.00% |
CMYK | 0.00% | 35.29% | 100.00% |
0.00% |
HEX | FF | A5 | 00 |
Decimal | 255 | 165 | 0 |
Binary | 11111111 | 10100101 | 0 |
Octal | 377 | 245 | 0 |
Examples of css and html codes for elements with #FFA500 color. Also use rgb(255,165,0) instead hex code.
.myTextColor { color: #FFA500; }
<p style="color:#FFA500">This sample text font color is #FFA500.</p>
This text font color is #FFA500.
.myBgColor { background-color: #FFA500; }
<div style="background-color:#FFA500">Inner text</div>
This div background color is #FFA500.
.myBorderColor { border: 1px solid #FFA500; }
<div style="border:3px solid #FFA500">Div</div>
This div border color is #FFA500.
.myOpacity80 { color: #FFA500; opacity: 0.8; }
<p style="color:#FFA500;opacity:0.8;">80%</p>
Text with #FFA500 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFA500;}
<p style="text-shadow: 3px 3px 1px #FFA500">Text here.</p>
This text has shadow with #FFA500 color.
.textShadow {text-shadow: 3px 3px 1px #FFA500, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFA500, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFA500 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFA500, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFA500, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFA500 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFA500; -webkit-box-shadow: 1px 1px 3px 2px #FFA500; box-shadow: 1px 1px 3px 2px #FFA500; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFA500; -webkit-box-shadow: 1px 1px 3px 2px #FFA500; box-shadow:1px 1px 3px 2px #FFA500;">
Div content here</div>
This text has color #FFA500 on black background.
This text has color #FFA500 on white background.
This text has black color on #FFA500 background.
This text has white color on #FFA500 background.