HEX: #FF4500
RGB: (255,69,0)
Color name is OrangeRed. #FF4500 contains mainly red color. Web safe color of #FF4500 is #FF3300 (or #F30).
#FF4500 color RGB value is (255,69,0).
RGB: (255,69,0) (100%,27%,0%)
R 255 of 255 = 100%
G 69 of 255 = 27%
B 0 of 255 = 0%
R + G + B ~ 42%. #FF4500 is middle color (not dark and not light).
R + G + B =
255 + 69 + 0 = 324 (100%)
R 255 of 324 ~ 78.7%
G 69 of 324 ~ 21.3%
B 0 of 324 ~ 0%
#FF4500 color CMYK value is (0,73,100,0).
CMYK: (0,73,100,0) C0M73Y100K0 (0%,73%,100%,0%) (0.00/0.73/1.00/0.00)
FF | 45 | 00 | |
---|---|---|---|
RGB | 255 | 69 | 0 |
HSL | 16° | 100.00% | 50.00% |
HSB/HSV | 16° | 100.00% | 100.00% |
CMYK | 0.00% | 72.94% | 100.00% |
0.00% |
HEX | FF | 45 | 00 |
Decimal | 255 | 69 | 0 |
Binary | 11111111 | 1000101 | 0 |
Octal | 377 | 105 | 0 |
Examples of css and html codes for elements with #FF4500 color. Also use rgb(255,69,0) instead hex code.
.myTextColor { color: #FF4500; }
<p style="color:#FF4500">This sample text font color is #FF4500.</p>
This text font color is #FF4500.
.myBgColor { background-color: #FF4500; }
<div style="background-color:#FF4500">Inner text</div>
This div background color is #FF4500.
.myBorderColor { border: 1px solid #FF4500; }
<div style="border:3px solid #FF4500">Div</div>
This div border color is #FF4500.
.myOpacity80 { color: #FF4500; opacity: 0.8; }
<p style="color:#FF4500;opacity:0.8;">80%</p>
Text with #FF4500 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FF4500;}
<p style="text-shadow: 3px 3px 1px #FF4500">Text here.</p>
This text has shadow with #FF4500 color.
.textShadow {text-shadow: 3px 3px 1px #FF4500, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FF4500, 5px 5px 20px red">Text here.</p>
This text has shadow with #FF4500 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FF4500, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FF4500, Direction=45, Strength=4)">Text</p>
This text has shadow with #FF4500 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FF4500; -webkit-box-shadow: 1px 1px 3px 2px #FF4500; box-shadow: 1px 1px 3px 2px #FF4500; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FF4500; -webkit-box-shadow: 1px 1px 3px 2px #FF4500; box-shadow:1px 1px 3px 2px #FF4500;">
Div content here</div>
This text has color #FF4500 on black background.
This text has color #FF4500 on white background.
This text has black color on #FF4500 background.
This text has white color on #FF4500 background.