HEX: #AEDDBB
RGB: (174,221,187)
#AEDDBB contains red, green and blue colors in about the same proportion. Web safe color of #AEDDBB is #99CCCC (or #9CC).
#AEDDBB color RGB value is (174,221,187).
RGB: (174,221,187) (68%,87%,73%)
R 174 of 255 = 68%
G 221 of 255 = 87%
B 187 of 255 = 73%
R + G + B ~ 76%. #AEDDBB is quite light color.
R + G + B =
174 + 221 + 187 = 582 (100%)
R 174 of 582 ~ 29.9%
G 221 of 582 ~ 37.97%
B 187 of 582 ~ 32.13%
#AEDDBB color CMYK value is (21,0,15,13).
CMYK: (21,0,15,13) C21M0Y15K13 (21%,0%,15%,13%) (0.21/0.00/0.15/0.13)
AE | DD | BB | |
---|---|---|---|
RGB | 174 | 221 | 187 |
HSL | 137° | 40.87% | 77.45% |
HSB/HSV | 137° | 21.27% | 86.67% |
CMYK | 21.27% | 0.00% | 15.38% |
13.33% |
HEX | AE | DD | BB |
Decimal | 174 | 221 | 187 |
Binary | 10101110 | 11011101 | 10111011 |
Octal | 256 | 335 | 273 |
Examples of css and html codes for elements with #AEDDBB color. Also use rgb(174,221,187) instead hex code.
.myTextColor { color: #AEDDBB; }
<p style="color:#AEDDBB">This sample text font color is #AEDDBB.</p>
This text font color is #AEDDBB.
.myBgColor { background-color: #AEDDBB; }
<div style="background-color:#AEDDBB">Inner text</div>
This div background color is #AEDDBB.
.myBorderColor { border: 1px solid #AEDDBB; }
<div style="border:3px solid #AEDDBB">Div</div>
This div border color is #AEDDBB.
.myOpacity80 { color: #AEDDBB; opacity: 0.8; }
<p style="color:#AEDDBB;opacity:0.8;">80%</p>
Text with #AEDDBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEDDBB;}
<p style="text-shadow: 3px 3px 1px #AEDDBB">Text here.</p>
This text has shadow with #AEDDBB color.
.textShadow {text-shadow: 3px 3px 1px #AEDDBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEDDBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEDDBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEDDBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEDDBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEDDBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEDDBB; -webkit-box-shadow: 1px 1px 3px 2px #AEDDBB; box-shadow: 1px 1px 3px 2px #AEDDBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEDDBB; -webkit-box-shadow: 1px 1px 3px 2px #AEDDBB; box-shadow:1px 1px 3px 2px #AEDDBB;">
Div content here</div>
This text has color #AEDDBB on black background.
This text has color #AEDDBB on white background.
This text has black color on #AEDDBB background.
This text has white color on #AEDDBB background.