Hex #a9f2ff Color

#a9f2ff
equivalent to

RGB

(169, 242, 255)

Details of #a9f2ff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
169
66.1643
0.53
0.34
91.3063
79.1593
189°
88.9715
242
79.1593
1.00
0.05
-19.3965
0.2628
34°
-22.9568
255
106.3998
0.83
0.00   0.00
-13.4570
0.3145
100°
-8.5994

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10101001
251
169
A9
Green
11110010
362
242
F2
Blue
11111111
377
255
FF

RGB in % of #a9f2ff

%25.38
%36.34
%38.29

CMYK in % of #a9f2ff

%34
%5
%0
%0

Triads of color #a9f2ff

#a9f2ff #f2ffa9 #ffa9ff

Similar Colors to #a9f2ff

#a9f2ff #a9ffe1 #a9c7ff

Preview Color #a9f2ff on black ground

#a9f2ff is very interesting for text.

Preview Color #a9f2ff on white ground

#a9f2ff is very interesting for text.

CSS Codes #a9f2ff color

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

Text Font Color #a9f2ff

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

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

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

This div background color is #a9f2ff


Border Color #a9f2ff

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

The color of this border is #a9f2ff


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #a9f2ff