HEX: #AED796
RGB: (174,215,150)
#AED796 contains mainly red and green colors. Web safe color of #AED796 is #99CC99 (or #9C9).
#AED796 color RGB value is (174,215,150).
RGB: (174,215,150) (68%,84%,59%)
R 174 of 255 = 68%
G 215 of 255 = 84%
B 150 of 255 = 59%
R + G + B ~ 70%. #AED796 is quite light color.
R + G + B =
174 + 215 + 150 = 539 (100%)
R 174 of 539 ~ 32.28%
G 215 of 539 ~ 39.89%
B 150 of 539 ~ 27.83%
#AED796 color CMYK value is (19,0,30,16).
CMYK: (19,0,30,16) C19M0Y30K16 (19%,0%,30%,16%) (0.19/0.00/0.30/0.16)
AE | D7 | 96 | |
---|---|---|---|
RGB | 174 | 215 | 150 |
HSL | 98° | 44.83% | 71.57% |
HSB/HSV | 98° | 30.23% | 84.31% |
CMYK | 19.07% | 0.00% | 30.23% |
15.69% |
HEX | AE | D7 | 96 |
Decimal | 174 | 215 | 150 |
Binary | 10101110 | 11010111 | 10010110 |
Octal | 256 | 327 | 226 |
Examples of css and html codes for elements with #AED796 color. Also use rgb(174,215,150) instead hex code.
.myTextColor { color: #AED796; }
<p style="color:#AED796">This sample text font color is #AED796.</p>
This text font color is #AED796.
.myBgColor { background-color: #AED796; }
<div style="background-color:#AED796">Inner text</div>
This div background color is #AED796.
.myBorderColor { border: 1px solid #AED796; }
<div style="border:3px solid #AED796">Div</div>
This div border color is #AED796.
.myOpacity80 { color: #AED796; opacity: 0.8; }
<p style="color:#AED796;opacity:0.8;">80%</p>
Text with #AED796 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AED796;}
<p style="text-shadow: 3px 3px 1px #AED796">Text here.</p>
This text has shadow with #AED796 color.
.textShadow {text-shadow: 3px 3px 1px #AED796, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AED796, 5px 5px 20px red">Text here.</p>
This text has shadow with #AED796 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AED796, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AED796, Direction=45, Strength=4)">Text</p>
This text has shadow with #AED796 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AED796; -webkit-box-shadow: 1px 1px 3px 2px #AED796; box-shadow: 1px 1px 3px 2px #AED796; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AED796; -webkit-box-shadow: 1px 1px 3px 2px #AED796; box-shadow:1px 1px 3px 2px #AED796;">
Div content here</div>
This text has color #AED796 on black background.
This text has color #AED796 on white background.
This text has black color on #AED796 background.
This text has white color on #AED796 background.