Hex #29111c Color

#29111c
equivalent to

RGB

(41, 17, 28)

Details of #29111c

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
41
1.3245
0.92
0.00
8.6207
0.9562
333°
9.7783
17
0.9562
0.41
0.59
14.1972
0.3791
59°
7.0663
28
1.2134
0.11
0.32   0.84
-2.2229
0.2737
16°
-0.5097

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
101001
51
41
29
Green
10001
21
17
11
Blue
11100
34
28
1C

RGB in % of #29111c

%47.67
%19.77
%32.56

CMYK in % of #29111c

%0
%59
%32
%84

Triads of color #29111c

#29111c #111c29 #1c291c

Similar Colors to #29111c

#29111c #291128 #291211

Preview Color #29111c on black ground

#29111c is very interesting for text.

Preview Color #29111c on white ground

#29111c is very interesting for text.

CSS Codes #29111c color

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

Text Font Color #29111c

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

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

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

This div background color is #29111c


Border Color #29111c

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

The color of this border is #29111c


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #29111c