COLOR #CC0000

HEX: #CC0000
RGB: (204,0,0)

Color info

#CC0000 contains only red color. #CC0000 color is web safe color. It maybe written shortly as #C00.

RGB color model

#CC0000 color RGB value is (204,0,0).

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

RGB channels and saturation

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

204
0
0

R + G + B ~ 27%. #CC0000 is quite dark color.

Portions of RGB colors in percentages

R + G + B =
204 + 0 + 0 = 204 (100%)
R 204 of 204 ~ 100%
G 0 of 204 ~ 0%
B 0 of 204 ~ 0%

%100

CMYK color model

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

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

CMYK percentages

%0
%100
%100
%20

Codes

Color #CC0000 in popluar color models

CC0000
RGB20400
HSL100.00%40.00%
HSB/HSV100.00%80.00%
CMYK0.00%100.00%100.00%
20.00%

Color #CC0000 in popluar number systems.

HEXCC0000
Decimal20400
Binary1100110000
Octal31400

Shades and tints

Shades of #CC0000

#CC0000
(204,0,0)
#BA0000
(186,0,0)
#A80000
(168,0,0)
#960000
(150,0,0)
#840000
(132,0,0)
#720000
(114,0,0)
#600000
(96,0,0)
#4E0000
(78,0,0)
#3C0000
(60,0,0)
#2A0000
(42,0,0)
#180000
(24,0,0)
#000000
(0,0,0)

Tints of #CC0000

#CC0000
(204,0,0)
#D01717
(208,23,23)
#D42E2E
(212,46,46)
#D84545
(216,69,69)
#DC5C5C
(220,92,92)
#E07373
(224,115,115)
#E48A8A
(228,138,138)
#E8A1A1
(232,161,161)
#ECB8B8
(236,184,184)
#F0CFCF
(240,207,207)
#F4E6E6
(244,230,230)
#FFFFFF
(255,255,255)

CSS3 styles

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

Text Font Color

.myTextColor { color: #CC0000; }

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

This text font color is #CC0000.


Background Color

.myBgColor { background-color: #CC0000; }

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

This div background color is #CC0000.


Border color

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

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

This div border color is #CC0000.


Opacity

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

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

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

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

This text has shadow with #CC0000 color.

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

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

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


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

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

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


Div box shadow color

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

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

Preview

Color preview on black background

This text has color #CC0000 on black background.


Color preview on white background

This text has color #CC0000 on white background.



Black color preview on #CC0000 background

This text has black color on #CC0000 background.


White color preview on #CC0000 background

This text has white color on #CC0000 background.