COLOR #CC00FF

HEX: #CC00FF
RGB: (204,0,255)

Color info

#CC00FF contains only red and blue colors. #CC00FF color is web safe color. It maybe written shortly as #C0F.

RGB color model

#CC00FF color RGB value is (204,0,255).

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

RGB channels and saturation

R 204 of 255 = 80%
G 0 of 255 = 0%
B 255 of 255 = 100%

204
0
255

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

Portions of RGB colors in percentages

R + G + B =
204 + 0 + 255 = 459 (100%)
R 204 of 459 ~ 44.44%
G 0 of 459 ~ 0%
B 255 of 459 ~ 55.56%

%44.44
%55.56

CMYK color model

#CC00FF color CMYK value is (20,100,0,0).

  • cyan value is 20.00%
  • magenta value is 100.00%
  • yellow value is 0.00%
  • key color value is 0.00%
CMYK:
(20,100,0,0)
C20M100Y0K0 
(20%,100%,0%,0%)
(0.20/1.00/0.00/0.00)	

CMYK percentages

%20
%100
%0
%0

Codes

Color #CC00FF in popluar color models

CC00FF
RGB2040255
HSL288°100.00%50.00%
HSB/HSV288°100.00%100.00%
CMYK20.00%100.00%0.00%
0.00%

Color #CC00FF in popluar number systems.

HEXCC00FF
Decimal2040255
Binary11001100011111111
Octal3140377

Shades and tints

Shades of #CC00FF

#CC00FF
(204,0,255)
#BA00E8
(186,0,232)
#A800D1
(168,0,209)
#9600BA
(150,0,186)
#8400A3
(132,0,163)
#72008C
(114,0,140)
#600075
(96,0,117)
#4E005E
(78,0,94)
#3C0047
(60,0,71)
#2A0030
(42,0,48)
#180019
(24,0,25)
#000000
(0,0,0)

Tints of #CC00FF

#CC00FF
(204,0,255)
#D017FF
(208,23,255)
#D42EFF
(212,46,255)
#D845FF
(216,69,255)
#DC5CFF
(220,92,255)
#E073FF
(224,115,255)
#E48AFF
(228,138,255)
#E8A1FF
(232,161,255)
#ECB8FF
(236,184,255)
#F0CFFF
(240,207,255)
#F4E6FF
(244,230,255)
#FFFFFF
(255,255,255)

CSS3 styles

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

Text Font Color

.myTextColor { color: #CC00FF; }

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

This text font color is #CC00FF.


Background Color

.myBgColor { background-color: #CC00FF; }

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

This div background color is #CC00FF.


Border color

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

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

This div border color is #CC00FF.


Opacity

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

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

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

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

This text has shadow with #CC00FF color.

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

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

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


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

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

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


Div box shadow color

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

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

Preview

Color preview on black background

This text has color #CC00FF on black background.


Color preview on white background

This text has color #CC00FF on white background.



Black color preview on #CC00FF background

This text has black color on #CC00FF background.


White color preview on #CC00FF background

This text has white color on #CC00FF background.