HEX: #ADEFBB
RGB: (173,239,187)
#ADEFBB contains mainly green and blue colors. Web safe color of #ADEFBB is #99FFCC (or #9FC).
#ADEFBB color RGB value is (173,239,187).
RGB: (173,239,187) (68%,94%,73%)
R 173 of 255 = 68%
G 239 of 255 = 94%
B 187 of 255 = 73%
R + G + B ~ 78%. #ADEFBB is quite light color.
R + G + B =
173 + 239 + 187 = 599 (100%)
R 173 of 599 ~ 28.88%
G 239 of 599 ~ 39.9%
B 187 of 599 ~ 31.22%
#ADEFBB color CMYK value is (28,0,22,6).
CMYK: (28,0,22,6) C28M0Y22K6 (28%,0%,22%,6%) (0.28/0.00/0.22/0.06)
AD | EF | BB | |
---|---|---|---|
RGB | 173 | 239 | 187 |
HSL | 133° | 67.35% | 80.78% |
HSB/HSV | 133° | 27.62% | 93.73% |
CMYK | 27.62% | 0.00% | 21.76% |
6.27% |
HEX | AD | EF | BB |
Decimal | 173 | 239 | 187 |
Binary | 10101101 | 11101111 | 10111011 |
Octal | 255 | 357 | 273 |
Examples of css and html codes for elements with #ADEFBB color. Also use rgb(173,239,187) instead hex code.
.myTextColor { color: #ADEFBB; }
<p style="color:#ADEFBB">This sample text font color is #ADEFBB.</p>
This text font color is #ADEFBB.
.myBgColor { background-color: #ADEFBB; }
<div style="background-color:#ADEFBB">Inner text</div>
This div background color is #ADEFBB.
.myBorderColor { border: 1px solid #ADEFBB; }
<div style="border:3px solid #ADEFBB">Div</div>
This div border color is #ADEFBB.
.myOpacity80 { color: #ADEFBB; opacity: 0.8; }
<p style="color:#ADEFBB;opacity:0.8;">80%</p>
Text with #ADEFBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADEFBB;}
<p style="text-shadow: 3px 3px 1px #ADEFBB">Text here.</p>
This text has shadow with #ADEFBB color.
.textShadow {text-shadow: 3px 3px 1px #ADEFBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADEFBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADEFBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADEFBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADEFBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADEFBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADEFBB; -webkit-box-shadow: 1px 1px 3px 2px #ADEFBB; box-shadow: 1px 1px 3px 2px #ADEFBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADEFBB; -webkit-box-shadow: 1px 1px 3px 2px #ADEFBB; box-shadow:1px 1px 3px 2px #ADEFBB;">
Div content here</div>
This text has color #ADEFBB on black background.
This text has color #ADEFBB on white background.
This text has black color on #ADEFBB background.
This text has white color on #ADEFBB background.