Hex #aeddfb Color

#aeddfb
equivalent to

RGB

(174, 221, 251)

Details of #aeddfb

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
174
60.7246
0.56
0.31
85.8445
67.6766
203°
82.2658
221
67.6766
0.91
0.12
-8.3471
0.2646
31°
-12.2047
251
101.1292
0.83
0.00   0.02
-19.5412
0.2948
98°
-15.2735

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10101110
256
174
AE
Green
11011101
335
221
DD
Blue
11111011
373
251
FB

RGB in % of #aeddfb

%26.93
%34.21
%38.85

CMYK in % of #aeddfb

%31
%12
%0
%2

Triads of color #aeddfb

#aeddfb #ddfbae #fbaefb

Similar Colors to #aeddfb

#aeddfb #aefbf3 #aeb7fb

Preview Color #aeddfb on black ground

#aeddfb is very interesting for text.

Preview Color #aeddfb on white ground

#aeddfb is very interesting for text.

CSS Codes #aeddfb color

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

Text Font Color #aeddfb

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

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

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

This div background color is #aeddfb


Border Color #aeddfb

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

The color of this border is #aeddfb


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #aeddfb