COLOR #FF0080

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

Color info

#FF0080 contains mainly red color. Web safe color of #FF0080 is #FF0066 (or #F06).

RGB color model

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

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

RGB channels and saturation

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

255
0
128

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

Portions of RGB colors in percentages

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

%66.58
%33.42

CMYK color model

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

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

CMYK percentages

%0
%100
%49.8
%0

Codes

Color #FF0080 in popluar color models

FF0080
RGB2550128
HSL330°100.00%50.00%
HSB/HSV330°100.00%100.00%
CMYK0.00%100.00%49.80%
0.00%

Color #FF0080 in popluar number systems.

HEXFF0080
Decimal2550128
Binary11111111010000000
Octal3770200

Shades and tints

Shades of #FF0080

#FF0080
(255,0,128)
#E80075
(232,0,117)
#D1006A
(209,0,106)
#BA005F
(186,0,95)
#A30054
(163,0,84)
#8C0049
(140,0,73)
#75003E
(117,0,62)
#5E0033
(94,0,51)
#470028
(71,0,40)
#30001D
(48,0,29)
#190012
(25,0,18)
#000000
(0,0,0)

Tints of #FF0080

#FF0080
(255,0,128)
#FF178B
(255,23,139)
#FF2E96
(255,46,150)
#FF45A1
(255,69,161)
#FF5CAC
(255,92,172)
#FF73B7
(255,115,183)
#FF8AC2
(255,138,194)
#FFA1CD
(255,161,205)
#FFB8D8
(255,184,216)
#FFCFE3
(255,207,227)
#FFE6EE
(255,230,238)
#FFFFFF
(255,255,255)

CSS3 styles

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

Text Font Color

.myTextColor { color: #FF0080; }

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

This text font color is #FF0080.


Background Color

.myBgColor { background-color: #FF0080; }

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

This div background color is #FF0080.


Border color

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

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

This div border color is #FF0080.


Opacity

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

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

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

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

This text has shadow with #FF0080 color.

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

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

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


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

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

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


Div box shadow color

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

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

Preview

Color preview on black background

This text has color #FF0080 on black background.


Color preview on white background

This text has color #FF0080 on white background.



Black color preview on #FF0080 background

This text has black color on #FF0080 background.


White color preview on #FF0080 background

This text has white color on #FF0080 background.