COLOR #8000FF

HEX: #8000FF
RGB: (128,0,255)

Color info

#8000FF contains mainly blue color. Web safe color of #8000FF is #6600FF (or #60F).

RGB color model

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

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

RGB channels and saturation

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

128
0
255

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

Portions of RGB colors in percentages

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

%33.42
%66.58

CMYK color model

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

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

CMYK percentages

%49.8
%100
%0
%0

Codes

Color #8000FF in popluar color models

8000FF
RGB1280255
HSL270°100.00%50.00%
HSB/HSV270°100.00%100.00%
CMYK49.80%100.00%0.00%
0.00%

Color #8000FF in popluar number systems.

HEX8000FF
Decimal1280255
Binary10000000011111111
Octal2000377

Shades and tints

Shades of #8000FF

#8000FF
(128,0,255)
#7500E8
(117,0,232)
#6A00D1
(106,0,209)
#5F00BA
(95,0,186)
#5400A3
(84,0,163)
#49008C
(73,0,140)
#3E0075
(62,0,117)
#33005E
(51,0,94)
#280047
(40,0,71)
#1D0030
(29,0,48)
#120019
(18,0,25)
#000000
(0,0,0)

Tints of #8000FF

#8000FF
(128,0,255)
#8B17FF
(139,23,255)
#962EFF
(150,46,255)
#A145FF
(161,69,255)
#AC5CFF
(172,92,255)
#B773FF
(183,115,255)
#C28AFF
(194,138,255)
#CDA1FF
(205,161,255)
#D8B8FF
(216,184,255)
#E3CFFF
(227,207,255)
#EEE6FF
(238,230,255)
#FFFFFF
(255,255,255)

CSS3 styles

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

Text Font Color

.myTextColor { color: #8000FF; }

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

This text font color is #8000FF.


Background Color

.myBgColor { background-color: #8000FF; }

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

This div background color is #8000FF.


Border color

.myBorderColor { border: 1px solid #8000FF; }

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

This div border color is #8000FF.


Opacity

.myOpacity80 { color: #8000FF; opacity: 0.8; }

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

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

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

This text has shadow with #8000FF color.

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

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

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


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

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

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


Div box shadow color

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

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

Preview

Color preview on black background

This text has color #8000FF on black background.


Color preview on white background

This text has color #8000FF on white background.



Black color preview on #8000FF background

This text has black color on #8000FF background.


White color preview on #8000FF background

This text has white color on #8000FF background.