Hex #cd0000 Color

#cd0000
equivalent to

RGB

(205, 0, 0)

Details of #cd0000

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
205
25.1768
0.00
0.00
42.7318
12.9791
36.0266
0
12.9791
1.00
1.00
67.9585
0.6401
100°
61.6966
0
1.1783
0.40
1.00   0.20
57.0243
0.3300
80°
23.2796

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11001101
315
205
CD
Green
0
0
0
0
Blue
0
0
0
0

RGB in % of #cd0000

%100.00
%0.00
%0.00

CMYK in % of #cd0000

%0
%100
%100
%20

Triads of color #cd0000

#cd0000 #0000cd #00cd00

Similar Colors to #cd0000

#cd0000 #cd0067 #cd6700

Preview Color #cd0000 on black ground

#cd0000 is very interesting for text.

Preview Color #cd0000 on white ground

#cd0000 is very interesting for text.

CSS Codes #cd0000 color

.mybgcolor {background-color:#cd0000; }
.myforecolor {color:#cd0000; }
.mybordercolor {border:3px solid #cd0000; }

Text Font Color #cd0000

<p style="color:#cd0000">Text here</p>

This sample text font color is #cd0000
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #cd0000

<div style="background-color:#cd0000">
Div content here</div>

This div background color is #cd0000


Border Color #cd0000

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

The color of this border is #cd0000


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #cd0000; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #cd0000;
-webkit-box-shadow: 1px 1px 3px 2px #cd0000;
box-shadow:         1px 1px 3px 2px #cd0000; }
				

Text Shadow using RGB

<p style="text-shadow: 4px 4px 2px rgba(0,0,0, 0.8);">Text here</p>
				

The shadow of this text using RGB.


Text Shadow using Hex

<p style="text-shadow: 4px 4px 2px #cd0000">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

<div style="-moz-box-shadow: 1px 1px 3px 2px #cd0000;
  -webkit-box-shadow: 1px 1px 3px 2px #cd0000;
  box-shadow:         1px 1px 3px 2px #cd0000;">
Div content here</div>

The shadow of div box using color #cd0000