HEX: #ADF0E7
RGB: (173,240,231)
#ADF0E7 contains mainly green and blue colors. Web safe color of #ADF0E7 is #99FFFF (or #9FF).
#ADF0E7 color RGB value is (173,240,231).
RGB: (173,240,231) (68%,94%,91%)
R 173 of 255 = 68%
G 240 of 255 = 94%
B 231 of 255 = 91%
R + G + B ~ 84%. #ADF0E7 is quite light color.
R + G + B =
173 + 240 + 231 = 644 (100%)
R 173 of 644 ~ 26.86%
G 240 of 644 ~ 37.27%
B 231 of 644 ~ 35.87%
#ADF0E7 color CMYK value is (28,0,4,6).
CMYK: (28,0,4,6) C28M0Y4K6 (28%,0%,4%,6%) (0.28/0.00/0.04/0.06)
AD | F0 | E7 | |
---|---|---|---|
RGB | 173 | 240 | 231 |
HSL | 172° | 69.07% | 80.98% |
HSB/HSV | 172° | 27.92% | 94.12% |
CMYK | 27.92% | 0.00% | 3.75% |
5.88% |
HEX | AD | F0 | E7 |
Decimal | 173 | 240 | 231 |
Binary | 10101101 | 11110000 | 11100111 |
Octal | 255 | 360 | 347 |
Examples of css and html codes for elements with #ADF0E7 color. Also use rgb(173,240,231) instead hex code.
.myTextColor { color: #ADF0E7; }
<p style="color:#ADF0E7">This sample text font color is #ADF0E7.</p>
This text font color is #ADF0E7.
.myBgColor { background-color: #ADF0E7; }
<div style="background-color:#ADF0E7">Inner text</div>
This div background color is #ADF0E7.
.myBorderColor { border: 1px solid #ADF0E7; }
<div style="border:3px solid #ADF0E7">Div</div>
This div border color is #ADF0E7.
.myOpacity80 { color: #ADF0E7; opacity: 0.8; }
<p style="color:#ADF0E7;opacity:0.8;">80%</p>
Text with #ADF0E7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADF0E7;}
<p style="text-shadow: 3px 3px 1px #ADF0E7">Text here.</p>
This text has shadow with #ADF0E7 color.
.textShadow {text-shadow: 3px 3px 1px #ADF0E7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADF0E7, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADF0E7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADF0E7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADF0E7, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADF0E7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADF0E7; -webkit-box-shadow: 1px 1px 3px 2px #ADF0E7; box-shadow: 1px 1px 3px 2px #ADF0E7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADF0E7; -webkit-box-shadow: 1px 1px 3px 2px #ADF0E7; box-shadow:1px 1px 3px 2px #ADF0E7;">
Div content here</div>
This text has color #ADF0E7 on black background.
This text has color #ADF0E7 on white background.
This text has black color on #ADF0E7 background.
This text has white color on #ADF0E7 background.