HEX: #AEDE9A
RGB: (174,222,154)
#AEDE9A contains mainly red and green colors. Web safe color of #AEDE9A is #99CC99 (or #9C9).
#AEDE9A color RGB value is (174,222,154).
RGB: (174,222,154) (68%,87%,60%)
R 174 of 255 = 68%
G 222 of 255 = 87%
B 154 of 255 = 60%
R + G + B ~ 72%. #AEDE9A is quite light color.
R + G + B =
174 + 222 + 154 = 550 (100%)
R 174 of 550 ~ 31.64%
G 222 of 550 ~ 40.36%
B 154 of 550 ~ 28%
#AEDE9A color CMYK value is (22,0,31,13).
CMYK: (22,0,31,13) C22M0Y31K13 (22%,0%,31%,13%) (0.22/0.00/0.31/0.13)
AE | DE | 9A | |
---|---|---|---|
RGB | 174 | 222 | 154 |
HSL | 102° | 50.75% | 73.73% |
HSB/HSV | 102° | 30.63% | 87.06% |
CMYK | 21.62% | 0.00% | 30.63% |
12.94% |
HEX | AE | DE | 9A |
Decimal | 174 | 222 | 154 |
Binary | 10101110 | 11011110 | 10011010 |
Octal | 256 | 336 | 232 |
Examples of css and html codes for elements with #AEDE9A color. Also use rgb(174,222,154) instead hex code.
.myTextColor { color: #AEDE9A; }
<p style="color:#AEDE9A">This sample text font color is #AEDE9A.</p>
This text font color is #AEDE9A.
.myBgColor { background-color: #AEDE9A; }
<div style="background-color:#AEDE9A">Inner text</div>
This div background color is #AEDE9A.
.myBorderColor { border: 1px solid #AEDE9A; }
<div style="border:3px solid #AEDE9A">Div</div>
This div border color is #AEDE9A.
.myOpacity80 { color: #AEDE9A; opacity: 0.8; }
<p style="color:#AEDE9A;opacity:0.8;">80%</p>
Text with #AEDE9A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEDE9A;}
<p style="text-shadow: 3px 3px 1px #AEDE9A">Text here.</p>
This text has shadow with #AEDE9A color.
.textShadow {text-shadow: 3px 3px 1px #AEDE9A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEDE9A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEDE9A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEDE9A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEDE9A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEDE9A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEDE9A; -webkit-box-shadow: 1px 1px 3px 2px #AEDE9A; box-shadow: 1px 1px 3px 2px #AEDE9A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEDE9A; -webkit-box-shadow: 1px 1px 3px 2px #AEDE9A; box-shadow:1px 1px 3px 2px #AEDE9A;">
Div content here</div>
This text has color #AEDE9A on black background.
This text has color #AEDE9A on white background.
This text has black color on #AEDE9A background.
This text has white color on #AEDE9A background.