Hex #95f5dc Color

#95f5dc
equivalent to

RGB

(149, 245, 220)

Details of #95f5dc

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
149
57.9651
0.46
0.39
90.2579
76.8617
164°
87.6708
245
76.8617
0.83
0.00
-33.9950
0.2705
39°
-35.4049
220
79.4909
0.77
0.10   0.04
3.1163
0.3586
96°
7.6298

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10010101
225
149
95
Green
11110101
365
245
F5
Blue
11011100
334
220
DC

RGB in % of #95f5dc

%24.27
%39.90
%35.83

CMYK in % of #95f5dc

%39
%0
%10
%4

Triads of color #95f5dc

#95f5dc #f5dc95 #dc95dc

Similar Colors to #95f5dc

#95f5dc #95f5ac #95def5

Preview Color #95f5dc on black ground

#95f5dc is very interesting for text.

Preview Color #95f5dc on white ground

#95f5dc is very interesting for text.

CSS Codes #95f5dc color

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

Text Font Color #95f5dc

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

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

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

This div background color is #95f5dc


Border Color #95f5dc

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

The color of this border is #95f5dc


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #95f5dc