Hex #afe4ff Color

#afe4ff
equivalent to

RGB

(175, 228, 255)

Details of #afe4ff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
175
63.4726
0.56
0.31
87.8822
71.8208
200°
84.7471
228
71.8208
1.00
0.11
-10.7302
0.2640
31°
-14.6169
255
105.1252
0.84
0.00   0.00
-18.5649
0.2987
100°
-14.1980

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10101111
257
175
AF
Green
11100100
344
228
E4
Blue
11111111
377
255
FF

RGB in % of #afe4ff

%26.60
%34.65
%38.75

CMYK in % of #afe4ff

%31
%11
%0
%0

Triads of color #afe4ff

#afe4ff #e4ffaf #ffafff

Similar Colors to #afe4ff

#afe4ff #affff2 #afbcff

Preview Color #afe4ff on black ground

#afe4ff is very interesting for text.

Preview Color #afe4ff on white ground

#afe4ff is very interesting for text.

CSS Codes #afe4ff color

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

Text Font Color #afe4ff

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

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

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

This div background color is #afe4ff


Border Color #afe4ff

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

The color of this border is #afe4ff


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #afe4ff