Hex #cd950c Color

#cd950c
equivalent to

RGB

(205, 149, 12)

Details of #cd950c

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
205
35.9906
0.12
0.00
65.3580
34.5006
43°
58.7372
149
34.5006
0.89
0.27
11.0512
0.4761
94°
6.5843
12
5.1102
0.43
0.94   0.20
68.1302
0.4563
80°
35.9586

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11001101
315
205
CD
Green
10010101
225
149
95
Blue
1100
14
12
C

RGB in % of #cd950c

%56.01
%40.71
%3.28

CMYK in % of #cd950c

%0
%27
%94
%20

Triads of color #cd950c

#cd950c #950ccd #0ccd0c

Similar Colors to #cd950c

#cd950c #cd350c #a5cd0c

Preview Color #cd950c on black ground

#cd950c is very interesting for text.

Preview Color #cd950c on white ground

#cd950c is very interesting for text.

CSS Codes #cd950c color

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

Text Font Color #cd950c

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

This sample text font color is #cd950c
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 #cd950c

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

This div background color is #cd950c


Border Color #cd950c

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

The color of this border is #cd950c


Examples Css3

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

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 #cd950c">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #cd950c