COLOR #FF8000

HEX: #FF8000
RGB: (255,128,0)

Color info

#FF8000 contains mainly red color. Web safe color of #FF8000 is #FF6600 (or #F60).

RGB color model

#FF8000 color RGB value is (255,128,0).

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

RGB channels and saturation

R 255 of 255 = 100%
G 128 of 255 = 50%
B 0 of 255 = 0%

255
128
0

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

Portions of RGB colors in percentages

R + G + B =
255 + 128 + 0 = 383 (100%)
R 255 of 383 ~ 66.58%
G 128 of 383 ~ 33.42%
B 0 of 383 ~ 0%

%66.58
%33.42

CMYK color model

#FF8000 color CMYK value is (0,50,100,0).

  • cyan value is 0.00%
  • magenta value is 49.80%
  • yellow value is 100.00%
  • key color value is 0.00%
CMYK:
(0,50,100,0)
C0M50Y100K0 
(0%,50%,100%,0%)
(0.00/0.50/1.00/0.00)	

CMYK percentages

%0
%49.8
%100
%0

Codes

Color #FF8000 in popluar color models

FF8000
RGB2551280
HSL30°100.00%50.00%
HSB/HSV30°100.00%100.00%
CMYK0.00%49.80%100.00%
0.00%

Color #FF8000 in popluar number systems.

HEXFF8000
Decimal2551280
Binary11111111100000000
Octal3772000

Shades and tints

Shades of #FF8000

#FF8000
(255,128,0)
#E87500
(232,117,0)
#D16A00
(209,106,0)
#BA5F00
(186,95,0)
#A35400
(163,84,0)
#8C4900
(140,73,0)
#753E00
(117,62,0)
#5E3300
(94,51,0)
#472800
(71,40,0)
#301D00
(48,29,0)
#191200
(25,18,0)
#000000
(0,0,0)

Tints of #FF8000

#FF8000
(255,128,0)
#FF8B17
(255,139,23)
#FF962E
(255,150,46)
#FFA145
(255,161,69)
#FFAC5C
(255,172,92)
#FFB773
(255,183,115)
#FFC28A
(255,194,138)
#FFCDA1
(255,205,161)
#FFD8B8
(255,216,184)
#FFE3CF
(255,227,207)
#FFEEE6
(255,238,230)
#FFFFFF
(255,255,255)

CSS3 styles

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

Text Font Color

.myTextColor { color: #FF8000; }

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

This text font color is #FF8000.


Background Color

.myBgColor { background-color: #FF8000; }

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

This div background color is #FF8000.


Border color

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

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

This div border color is #FF8000.


Opacity

.myOpacity80 { color: #FF8000; opacity: 0.8; }

<p style="color:#FF8000;opacity:0.8;">80%</p>

Text with #FF8000 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 #FF8000;}

<p style="text-shadow: 3px 3px 1px #FF8000">Text here.</p>

This text has shadow with #FF8000 color.

.textShadow {text-shadow: 3px 3px 1px #FF8000, 3px 3px 1px red;}

<p style="text-shadow: 3px 3px 1px #FF8000, 5px 5px 20px red">Text here.</p>

This text has shadow with #FF8000 primary color and red secondary color.


Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FF8000, Direction=45, Strength=4)}

<p style="filter: Shadow(Color=#FF8000, Direction=45, Strength=4)">Text</p>

This text has shadow with #FF8000 and red colors in old Internet Explorer.


Div box shadow color

/* css code */
.divShadow
{
  -moz-box-shadow:	1px 1px 3px 2px #FF8000;
  -webkit-box-shadow:	1px 1px 3px 2px #FF8000;
  box-shadow:		1px 1px 3px 2px #FF8000;
}

/* html code with inline style */
<div style="-moz-box-shadow: 1px 1px 3px 2px #FF8000;
-webkit-box-shadow: 1px 1px 3px 2px #FF8000;
box-shadow:1px 1px 3px 2px #FF8000;">
Div content here</div>
This div box has shadow with color #FF8000.

Preview

Color preview on black background

This text has color #FF8000 on black background.


Color preview on white background

This text has color #FF8000 on white background.



Black color preview on #FF8000 background

This text has black color on #FF8000 background.


White color preview on #FF8000 background

This text has white color on #FF8000 background.