HEX: #AEEBAD
RGB: (174,235,173)
#AEEBAD contains mainly green color. Web safe color of #AEEBAD is #99FF99 (or #9F9).
#AEEBAD color RGB value is (174,235,173).
RGB: (174,235,173) (68%,92%,68%)
R 174 of 255 = 68%
G 235 of 255 = 92%
B 173 of 255 = 68%
R + G + B ~ 76%. #AEEBAD is quite light color.
R + G + B =
174 + 235 + 173 = 582 (100%)
R 174 of 582 ~ 29.9%
G 235 of 582 ~ 40.38%
B 173 of 582 ~ 29.73%
#AEEBAD color CMYK value is (26,0,26,8).
CMYK: (26,0,26,8) C26M0Y26K8 (26%,0%,26%,8%) (0.26/0.00/0.26/0.08)
AE | EB | AD | |
---|---|---|---|
RGB | 174 | 235 | 173 |
HSL | 119° | 60.78% | 80.00% |
HSB/HSV | 119° | 26.38% | 92.16% |
CMYK | 25.96% | 0.00% | 26.38% |
7.84% |
HEX | AE | EB | AD |
Decimal | 174 | 235 | 173 |
Binary | 10101110 | 11101011 | 10101101 |
Octal | 256 | 353 | 255 |
Examples of css and html codes for elements with #AEEBAD color. Also use rgb(174,235,173) instead hex code.
.myTextColor { color: #AEEBAD; }
<p style="color:#AEEBAD">This sample text font color is #AEEBAD.</p>
This text font color is #AEEBAD.
.myBgColor { background-color: #AEEBAD; }
<div style="background-color:#AEEBAD">Inner text</div>
This div background color is #AEEBAD.
.myBorderColor { border: 1px solid #AEEBAD; }
<div style="border:3px solid #AEEBAD">Div</div>
This div border color is #AEEBAD.
.myOpacity80 { color: #AEEBAD; opacity: 0.8; }
<p style="color:#AEEBAD;opacity:0.8;">80%</p>
Text with #AEEBAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEEBAD;}
<p style="text-shadow: 3px 3px 1px #AEEBAD">Text here.</p>
This text has shadow with #AEEBAD color.
.textShadow {text-shadow: 3px 3px 1px #AEEBAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEEBAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEEBAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEEBAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEEBAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEEBAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEEBAD; -webkit-box-shadow: 1px 1px 3px 2px #AEEBAD; box-shadow: 1px 1px 3px 2px #AEEBAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEEBAD; -webkit-box-shadow: 1px 1px 3px 2px #AEEBAD; box-shadow:1px 1px 3px 2px #AEEBAD;">
Div content here</div>
This text has color #AEEBAD on black background.
This text has color #AEEBAD on white background.
This text has black color on #AEEBAD background.
This text has white color on #AEEBAD background.