HEX: #AEFCEE
RGB: (174,252,238)
#AEFCEE contains mainly green and blue colors. Web safe color of #AEFCEE is #99FFFF (or #9FF).
#AEFCEE color RGB value is (174,252,238).
RGB: (174,252,238) (68%,99%,93%)
R 174 of 255 = 68%
G 252 of 255 = 99%
B 238 of 255 = 93%
R + G + B ~ 87%. #AEFCEE is light color.
R + G + B =
174 + 252 + 238 = 664 (100%)
R 174 of 664 ~ 26.2%
G 252 of 664 ~ 37.95%
B 238 of 664 ~ 35.84%
#AEFCEE color CMYK value is (31,0,6,1).
CMYK: (31,0,6,1) C31M0Y6K1 (31%,0%,6%,1%) (0.31/0.00/0.06/0.01)
AE | FC | EE | |
---|---|---|---|
RGB | 174 | 252 | 238 |
HSL | 169° | 92.86% | 83.53% |
HSB/HSV | 169° | 30.95% | 98.82% |
CMYK | 30.95% | 0.00% | 5.56% |
1.18% |
HEX | AE | FC | EE |
Decimal | 174 | 252 | 238 |
Binary | 10101110 | 11111100 | 11101110 |
Octal | 256 | 374 | 356 |
Examples of css and html codes for elements with #AEFCEE color. Also use rgb(174,252,238) instead hex code.
.myTextColor { color: #AEFCEE; }
<p style="color:#AEFCEE">This sample text font color is #AEFCEE.</p>
This text font color is #AEFCEE.
.myBgColor { background-color: #AEFCEE; }
<div style="background-color:#AEFCEE">Inner text</div>
This div background color is #AEFCEE.
.myBorderColor { border: 1px solid #AEFCEE; }
<div style="border:3px solid #AEFCEE">Div</div>
This div border color is #AEFCEE.
.myOpacity80 { color: #AEFCEE; opacity: 0.8; }
<p style="color:#AEFCEE;opacity:0.8;">80%</p>
Text with #AEFCEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEFCEE;}
<p style="text-shadow: 3px 3px 1px #AEFCEE">Text here.</p>
This text has shadow with #AEFCEE color.
.textShadow {text-shadow: 3px 3px 1px #AEFCEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEFCEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEFCEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEFCEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEFCEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEFCEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEFCEE; -webkit-box-shadow: 1px 1px 3px 2px #AEFCEE; box-shadow: 1px 1px 3px 2px #AEFCEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEFCEE; -webkit-box-shadow: 1px 1px 3px 2px #AEFCEE; box-shadow:1px 1px 3px 2px #AEFCEE;">
Div content here</div>
This text has color #AEFCEE on black background.
This text has color #AEFCEE on white background.
This text has black color on #AEFCEE background.
This text has white color on #AEFCEE background.