HEX: #AEDFF2
RGB: (174,223,242)
#AEDFF2 contains mainly green and blue colors. Web safe color of #AEDFF2 is #99CCFF (or #9CF).
#AEDFF2 color RGB value is (174,223,242).
RGB: (174,223,242) (68%,87%,95%)
R 174 of 255 = 68%
G 223 of 255 = 87%
B 242 of 255 = 95%
R + G + B ~ 83%. #AEDFF2 is quite light color.
R + G + B =
174 + 223 + 242 = 639 (100%)
R 174 of 639 ~ 27.23%
G 223 of 639 ~ 34.9%
B 242 of 639 ~ 37.87%
#AEDFF2 color CMYK value is (28,8,0,5).
CMYK: (28,8,0,5) C28M8Y0K5 (28%,8%,0%,5%) (0.28/0.08/0.00/0.05)
AE | DF | F2 | |
---|---|---|---|
RGB | 174 | 223 | 242 |
HSL | 197° | 72.34% | 81.57% |
HSB/HSV | 197° | 28.10% | 94.90% |
CMYK | 28.10% | 7.85% | 0.00% |
5.10% |
HEX | AE | DF | F2 |
Decimal | 174 | 223 | 242 |
Binary | 10101110 | 11011111 | 11110010 |
Octal | 256 | 337 | 362 |
Examples of css and html codes for elements with #AEDFF2 color. Also use rgb(174,223,242) instead hex code.
.myTextColor { color: #AEDFF2; }
<p style="color:#AEDFF2">This sample text font color is #AEDFF2.</p>
This text font color is #AEDFF2.
.myBgColor { background-color: #AEDFF2; }
<div style="background-color:#AEDFF2">Inner text</div>
This div background color is #AEDFF2.
.myBorderColor { border: 1px solid #AEDFF2; }
<div style="border:3px solid #AEDFF2">Div</div>
This div border color is #AEDFF2.
.myOpacity80 { color: #AEDFF2; opacity: 0.8; }
<p style="color:#AEDFF2;opacity:0.8;">80%</p>
Text with #AEDFF2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEDFF2;}
<p style="text-shadow: 3px 3px 1px #AEDFF2">Text here.</p>
This text has shadow with #AEDFF2 color.
.textShadow {text-shadow: 3px 3px 1px #AEDFF2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEDFF2, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEDFF2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEDFF2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEDFF2, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEDFF2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEDFF2; -webkit-box-shadow: 1px 1px 3px 2px #AEDFF2; box-shadow: 1px 1px 3px 2px #AEDFF2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEDFF2; -webkit-box-shadow: 1px 1px 3px 2px #AEDFF2; box-shadow:1px 1px 3px 2px #AEDFF2;">
Div content here</div>
This text has color #AEDFF2 on black background.
This text has color #AEDFF2 on white background.
This text has black color on #AEDFF2 background.
This text has white color on #AEDFF2 background.