Hex #a5affc Color

#a5affc
equivalent to

RGB

(165, 175, 252)

Details of #a5affc

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
165
48.4177
0.65
0.35
73.3423
45.6876
233°
67.5926
175
45.6876
0.94
0.31
14.2276
0.2516
35°
9.5759
252
98.3622
0.82
0.00   0.01
-39.3004
0.2374
99°
-38.9345

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10100101
245
165
A5
Green
10101111
257
175
AF
Blue
11111100
374
252
FC

RGB in % of #a5affc

%27.87
%29.56
%42.57

CMYK in % of #a5affc

%35
%31
%0
%1

Triads of color #a5affc

#a5affc #affca5 #fca5fc

Similar Colors to #a5affc

#a5affc #a5dbfc #c7a5fc

Preview Color #a5affc on black ground

#a5affc is very interesting for text.

Preview Color #a5affc on white ground

#a5affc is very interesting for text.

CSS Codes #a5affc color

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

Text Font Color #a5affc

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

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

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

This div background color is #a5affc


Border Color #a5affc

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

The color of this border is #a5affc


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #a5affc