Hex #dfcc3f Color

#dfcc3f
equivalent to

RGB

(223, 204, 63)

Details of #dfcc3f

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
223
52.9215
0.15
0.00
81.4193
59.2326
53°
76.9627
204
59.2326
0.71
0.09
-8.5704
0.4217
72°
-11.9432
63
13.3464
0.56
0.72   0.13
68.6150
0.4720
87°
43.5946

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11011111
337
223
DF
Green
11001100
314
204
CC
Blue
111111
77
63
3F

RGB in % of #dfcc3f

%45.51
%41.63
%12.86

CMYK in % of #dfcc3f

%0
%9
%72
%13

Triads of color #dfcc3f

#dfcc3f #cc3fdf #3fdf3f

Similar Colors to #dfcc3f

#dfcc3f #df7c3f #a2df3f

Preview Color #dfcc3f on black ground

#dfcc3f is very interesting for text.

Preview Color #dfcc3f on white ground

#dfcc3f is very interesting for text.

CSS Codes #dfcc3f color

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

Text Font Color #dfcc3f

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

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

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

This div background color is #dfcc3f


Border Color #dfcc3f

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

The color of this border is #dfcc3f


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #dfcc3f