Hex #a5dafc Color

#a5dafc
equivalent to

RGB

(165, 218, 252)

Details of #a5dafc

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
165
58.1591
0.57
0.35
84.5715
65.1704
203°
80.7282
218
65.1704
0.94
0.13
-9.0119
0.2586
35°
-12.6769
252
101.6093
0.82
0.00   0.01
-22.0444
0.2897
99°
-18.0900

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10100101
245
165
A5
Green
11011010
332
218
DA
Blue
11111100
374
252
FC

RGB in % of #a5dafc

%25.98
%34.33
%39.69

CMYK in % of #a5dafc

%35
%13
%0
%1

Triads of color #a5dafc

#a5dafc #dafca5 #fca5fc

Similar Colors to #a5dafc

#a5dafc #a5fcf3 #a5affc

Preview Color #a5dafc on black ground

#a5dafc is very interesting for text.

Preview Color #a5dafc on white ground

#a5dafc is very interesting for text.

CSS Codes #a5dafc color

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

Text Font Color #a5dafc

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

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

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

This div background color is #a5dafc


Border Color #a5dafc

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

The color of this border is #a5dafc


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #a5dafc