Hex #330a1d Color

#330a1d
equivalent to

RGB

(51, 10, 29)

Details of #330a1d

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
51
1.6956
0.92
0.00
9.0711
1.0096
332°
10.0479
10
1.0096
0.67
0.80
22.5802
0.4268
80°
12.5376
29
1.2679
0.12
0.43   0.80
-2.1059
0.2541
20°
-0.4455

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
110011
63
51
33
Green
1010
12
10
A
Blue
11101
35
29
1D

RGB in % of #330a1d

%56.67
%11.11
%32.22

CMYK in % of #330a1d

%0
%80
%43
%80

Triads of color #330a1d

#330a1d #0a1d33 #1d331d

Similar Colors to #330a1d

#330a1d #330a32 #330c0a

Preview Color #330a1d on black ground

#330a1d is very interesting for text.

Preview Color #330a1d on white ground

#330a1d is very interesting for text.

CSS Codes #330a1d color

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

Text Font Color #330a1d

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

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

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

This div background color is #330a1d


Border Color #330a1d

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

The color of this border is #330a1d


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #330a1d