Hex #9370db Color

#9370db
equivalent to

RGB

(147, 112, 219)

Details of #9370db

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
147
30.6130
0.72
0.33
54.9752
22.9059
260°
47.8601
112
22.9059
0.60
0.49
36.8077
0.2482
49°
30.4199
219
69.8256
0.65
0.00   0.14
-50.0994
0.1857
86°
-52.9681

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10010011
223
147
93
Green
1110000
160
112
70
Blue
11011011
333
219
DB

RGB in % of #9370db

%30.75
%23.43
%45.82

CMYK in % of #9370db

%33
%49
%0
%14

Triads of color #9370db

#9370db #70db93 #db93db

Similar Colors to #9370db

#9370db #7083db #c970db

Preview Color #9370db on black ground

#9370db is very interesting for text.

Preview Color #9370db on white ground

#9370db is very interesting for text.

CSS Codes #9370db color

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

Text Font Color #9370db

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

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

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

This div background color is #9370db


Border Color #9370db

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

The color of this border is #9370db


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #9370db