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