COLOR #FF4000

HEX: #FF4000
RGB: (255,64,0)

Color info

#FF4000 contains mainly red color. Web safe color of #FF4000 is #FF3300 (or #F30).

RGB color model

#FF4000 color RGB value is (255,64,0).

  • red value is 255;
  • green value is 64;
  • blue value is 0.
RGB:
(255,64,0)
(100%,25%,0%)

RGB channels and saturation

R 255 of 255 = 100%
G 64 of 255 = 25%
B 0 of 255 = 0%

255
64
0

R + G + B ~ 42%. #FF4000 is middle color (not dark and not light).

Portions of RGB colors in percentages

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%

%79.94
%20.06

CMYK color model

#FF4000 color CMYK value is (0,75,100,0).

  • cyan value is 0.00%
  • magenta value is 74.90%
  • yellow value is 100.00%
  • key color value is 0.00%
CMYK:
(0,75,100,0)
C0M75Y100K0 
(0%,75%,100%,0%)
(0.00/0.75/1.00/0.00)	

CMYK percentages

%0
%74.9
%100
%0

Codes

Color #FF4000 in popluar color models

FF4000
RGB255640
HSL15°100.00%50.00%
HSB/HSV15°100.00%100.00%
CMYK0.00%74.90%100.00%
0.00%

Color #FF4000 in popluar number systems.

HEXFF4000
Decimal255640
Binary1111111110000000
Octal3771000

Shades and tints

Shades of #FF4000

#FF4000
(255,64,0)
#E83B00
(232,59,0)
#D13600
(209,54,0)
#BA3100
(186,49,0)
#A32C00
(163,44,0)
#8C2700
(140,39,0)
#752200
(117,34,0)
#5E1D00
(94,29,0)
#471800
(71,24,0)
#301300
(48,19,0)
#190E00
(25,14,0)
#000000
(0,0,0)

Tints of #FF4000

#FF4000
(255,64,0)
#FF5117
(255,81,23)
#FF622E
(255,98,46)
#FF7345
(255,115,69)
#FF845C
(255,132,92)
#FF9573
(255,149,115)
#FFA68A
(255,166,138)
#FFB7A1
(255,183,161)
#FFC8B8
(255,200,184)
#FFD9CF
(255,217,207)
#FFEAE6
(255,234,230)
#FFFFFF
(255,255,255)

CSS3 styles

Examples of css and html codes for elements with #FF4000 color. Also use rgb(255,64,0) instead hex code.

Text Font Color

.myTextColor { color: #FF4000; }

<p style="color:#FF4000">This sample text font color is #FF4000.</p>

This text font color is #FF4000.


Background Color

.myBgColor { background-color: #FF4000; }

<div style="background-color:#FF4000">Inner text</div>

This div background color is #FF4000.


Border color

.myBorderColor { border: 1px solid #FF4000; }

<div style="border:3px solid #FF4000">Div</div>

This div border color is #FF4000.


Opacity

.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%.

Background with opacity value 100%.

Background with opacity value 80%.

Background with opacity value 50%.

Background with opacity value 30%.

Text shadow color

.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.


Div box shadow color

/* 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 div box has shadow with color #FF4000.

Preview

Color preview on black background

This text has color #FF4000 on black background.


Color preview on white background

This text has color #FF4000 on white background.



Black color preview on #FF4000 background

This text has black color on #FF4000 background.


White color preview on #FF4000 background

This text has white color on #FF4000 background.