HEX: #ADEE7D
RGB: (173,238,125)
#ADEE7D contains mainly green color. #ADEE7D ‘ nin web güvenlik rengi #99FF66 (ya da #9F6) dir.
#ADEE7D color RGB value is (173,238,125).
RGB: (173,238,125) (68%,93%,49%)
R 173 of 255 = 68%
G 238 of 255 = 93%
B 125 of 255 = 49%
R + G + B ~ 70%. #ADEE7D is quite light color.
R + G + B =
173 + 238 + 125 = 536 (100%)
R 173 of 536 ~ 32.28%
G 238 of 536 ~ 44.4%
B 125 of 536 ~ 23.32%
#ADEE7D rengi CMYK tonu (27,0,47,7).
CMYK: (27,0,47,7) C27M0Y47K7 (27%,0%,47%,7%) (0.27/0.00/0.47/0.07)
AD | EE | 7D | |
---|---|---|---|
RGB | 173 | 238 | 125 |
HSL | 95° | 76.87% | 71.18% |
HSB/HSV | 95° | 47.48% | 93.33% |
CMYK | 27.31% | 0.00% | 47.48% |
6.67% |
HEX | AD | EE | 7D |
Decimal | 173 | 238 | 125 |
Binary | 10101101 | 11101110 | 1111101 |
Octal | 255 | 356 | 175 |
Examples of css and html codes for elements with #ADEE7D color. Also use rgb(173,238,125) instead hex code.
.myTextColor { color: #ADEE7D; }
<p style="color:#ADEE7D">This sample text font color is #ADEE7D.</p>
This text font color is #ADEE7D.
.myBgColor { background-color: #ADEE7D; }
<div style="background-color:#ADEE7D">Inner text</div>
This div background color is #ADEE7D.
.myBorderColor { border: 1px solid #ADEE7D; }
<div style="border:3px solid #ADEE7D">Div</div>
This div border color is #ADEE7D.
.myOpacity80 { color: #ADEE7D; opacity: 0.8; }
<p style="color:#ADEE7D;opacity:0.8;">80%</p>
Text with #ADEE7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADEE7D;}
<p style="text-shadow: 3px 3px 1px #ADEE7D">Text here.</p>
This text has shadow with #ADEE7D color.
.textShadow {text-shadow: 3px 3px 1px #ADEE7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADEE7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADEE7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADEE7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADEE7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADEE7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADEE7D; -webkit-box-shadow: 1px 1px 3px 2px #ADEE7D; box-shadow: 1px 1px 3px 2px #ADEE7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADEE7D; -webkit-box-shadow: 1px 1px 3px 2px #ADEE7D; box-shadow:1px 1px 3px 2px #ADEE7D;">
Div content here</div>
This text has color #ADEE7D on black background.
This text has color #ADEE7D on white background.
This text has black color on #ADEE7D background.
This text has white color on #ADEE7D background.