HEX: #ADF5BE
RGB: (173,245,190)
#ADF5BE contains mainly green and blue colors. Web safe color of #ADF5BE is #99FFCC (or #9FC).
#ADF5BE color RGB value is (173,245,190).
RGB: (173,245,190) (68%,96%,75%)
R 173 of 255 = 68%
G 245 of 255 = 96%
B 190 of 255 = 75%
R + G + B ~ 80%. #ADF5BE is quite light color.
R + G + B =
173 + 245 + 190 = 608 (100%)
R 173 of 608 ~ 28.45%
G 245 of 608 ~ 40.3%
B 190 of 608 ~ 31.25%
#ADF5BE color CMYK value is (29,0,22,4).
CMYK: (29,0,22,4) C29M0Y22K4 (29%,0%,22%,4%) (0.29/0.00/0.22/0.04)
AD | F5 | BE | |
---|---|---|---|
RGB | 173 | 245 | 190 |
HSL | 134° | 78.26% | 81.96% |
HSB/HSV | 134° | 29.39% | 96.08% |
CMYK | 29.39% | 0.00% | 22.45% |
3.92% |
HEX | AD | F5 | BE |
Decimal | 173 | 245 | 190 |
Binary | 10101101 | 11110101 | 10111110 |
Octal | 255 | 365 | 276 |
Examples of css and html codes for elements with #ADF5BE color. Also use rgb(173,245,190) instead hex code.
.myTextColor { color: #ADF5BE; }
<p style="color:#ADF5BE">This sample text font color is #ADF5BE.</p>
This text font color is #ADF5BE.
.myBgColor { background-color: #ADF5BE; }
<div style="background-color:#ADF5BE">Inner text</div>
This div background color is #ADF5BE.
.myBorderColor { border: 1px solid #ADF5BE; }
<div style="border:3px solid #ADF5BE">Div</div>
This div border color is #ADF5BE.
.myOpacity80 { color: #ADF5BE; opacity: 0.8; }
<p style="color:#ADF5BE;opacity:0.8;">80%</p>
Text with #ADF5BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADF5BE;}
<p style="text-shadow: 3px 3px 1px #ADF5BE">Text here.</p>
This text has shadow with #ADF5BE color.
.textShadow {text-shadow: 3px 3px 1px #ADF5BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADF5BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADF5BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADF5BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADF5BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADF5BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADF5BE; -webkit-box-shadow: 1px 1px 3px 2px #ADF5BE; box-shadow: 1px 1px 3px 2px #ADF5BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADF5BE; -webkit-box-shadow: 1px 1px 3px 2px #ADF5BE; box-shadow:1px 1px 3px 2px #ADF5BE;">
Div content here</div>
This text has color #ADF5BE on black background.
This text has color #ADF5BE on white background.
This text has black color on #ADF5BE background.
This text has white color on #ADF5BE background.