COLOR #FF0800

HEX: #FF0800
RGB: (255,8,0)

Color info

#FF0800 contains mainly red color. Web safe color of #FF0800 is #FF0000 (or #F00).

RGB color model

#FF0800 color RGB value is (255,8,0).

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

RGB channels and saturation

R 255 of 255 = 100%
G 8 of 255 = 3%
B 0 of 255 = 0%

255
8
0

R + G + B ~ 34%. #FF0800 is quite dark color.

Portions of RGB colors in percentages

R + G + B =
255 + 8 + 0 = 263 (100%)
R 255 of 263 ~ 96.96%
G 8 of 263 ~ 3.04%
B 0 of 263 ~ 0%

%96.96

CMYK color model

#FF0800 color CMYK value is (0,97,100,0).

  • cyan value is 0.00%
  • magenta value is 96.86%
  • yellow value is 100.00%
  • key color value is 0.00%
CMYK:
(0,97,100,0)
C0M97Y100K0 
(0%,97%,100%,0%)
(0.00/0.97/1.00/0.00)	

CMYK percentages

%0
%96.86
%100
%0

Codes

Color #FF0800 in popluar color models

FF0800
RGB25580
HSL100.00%50.00%
HSB/HSV100.00%100.00%
CMYK0.00%96.86%100.00%
0.00%

Color #FF0800 in popluar number systems.

HEXFF0800
Decimal25580
Binary1111111110000
Octal377100

Shades and tints

Shades of #FF0800

#FF0800
(255,8,0)
#E80800
(232,8,0)
#D10800
(209,8,0)
#BA0800
(186,8,0)
#A30800
(163,8,0)
#8C0800
(140,8,0)
#750800
(117,8,0)
#5E0800
(94,8,0)
#470800
(71,8,0)
#300800
(48,8,0)
#190800
(25,8,0)
#000000
(0,0,0)

Tints of #FF0800

#FF0800
(255,8,0)
#FF1E17
(255,30,23)
#FF342E
(255,52,46)
#FF4A45
(255,74,69)
#FF605C
(255,96,92)
#FF7673
(255,118,115)
#FF8C8A
(255,140,138)
#FFA2A1
(255,162,161)
#FFB8B8
(255,184,184)
#FFCECF
(255,206,207)
#FFE4E6
(255,228,230)
#FFFFFF
(255,255,255)

CSS3 styles

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

Text Font Color

.myTextColor { color: #FF0800; }

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

This text font color is #FF0800.


Background Color

.myBgColor { background-color: #FF0800; }

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

This div background color is #FF0800.


Border color

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

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

This div border color is #FF0800.


Opacity

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

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

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

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

This text has shadow with #FF0800 color.

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

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

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


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

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

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


Div box shadow color

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

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

Preview

Color preview on black background

This text has color #FF0800 on black background.


Color preview on white background

This text has color #FF0800 on white background.



Black color preview on #FF0800 background

This text has black color on #FF0800 background.


White color preview on #FF0800 background

This text has white color on #FF0800 background.