HEX: #ADEDBD
RGB: (173,237,189)
#ADEDBD contains mainly green and blue colors. Web safe color of #ADEDBD is #99FFCC (or #9FC).
#ADEDBD color RGB value is (173,237,189).
RGB: (173,237,189) (68%,93%,74%)
R 173 of 255 = 68%
G 237 of 255 = 93%
B 189 of 255 = 74%
R + G + B ~ 78%. #ADEDBD is quite light color.
R + G + B =
173 + 237 + 189 = 599 (100%)
R 173 of 599 ~ 28.88%
G 237 of 599 ~ 39.57%
B 189 of 599 ~ 31.55%
#ADEDBD color CMYK value is (27,0,20,7).
CMYK: (27,0,20,7) C27M0Y20K7 (27%,0%,20%,7%) (0.27/0.00/0.20/0.07)
AD | ED | BD | |
---|---|---|---|
RGB | 173 | 237 | 189 |
HSL | 135° | 64.00% | 80.39% |
HSB/HSV | 135° | 27.00% | 92.94% |
CMYK | 27.00% | 0.00% | 20.25% |
7.06% |
HEX | AD | ED | BD |
Decimal | 173 | 237 | 189 |
Binary | 10101101 | 11101101 | 10111101 |
Octal | 255 | 355 | 275 |
Examples of css and html codes for elements with #ADEDBD color. Also use rgb(173,237,189) instead hex code.
.myTextColor { color: #ADEDBD; }
<p style="color:#ADEDBD">This sample text font color is #ADEDBD.</p>
This text font color is #ADEDBD.
.myBgColor { background-color: #ADEDBD; }
<div style="background-color:#ADEDBD">Inner text</div>
This div background color is #ADEDBD.
.myBorderColor { border: 1px solid #ADEDBD; }
<div style="border:3px solid #ADEDBD">Div</div>
This div border color is #ADEDBD.
.myOpacity80 { color: #ADEDBD; opacity: 0.8; }
<p style="color:#ADEDBD;opacity:0.8;">80%</p>
Text with #ADEDBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADEDBD;}
<p style="text-shadow: 3px 3px 1px #ADEDBD">Text here.</p>
This text has shadow with #ADEDBD color.
.textShadow {text-shadow: 3px 3px 1px #ADEDBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADEDBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADEDBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADEDBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADEDBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADEDBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADEDBD; -webkit-box-shadow: 1px 1px 3px 2px #ADEDBD; box-shadow: 1px 1px 3px 2px #ADEDBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADEDBD; -webkit-box-shadow: 1px 1px 3px 2px #ADEDBD; box-shadow:1px 1px 3px 2px #ADEDBD;">
Div content here</div>
This text has color #ADEDBD on black background.
This text has color #ADEDBD on white background.
This text has black color on #ADEDBD background.
This text has white color on #ADEDBD background.