HEX: #ADC0EB
RGB: (173,192,235)
#ADC0EB contains mainly green and blue colors. Web safe color of #ADC0EB is #99CCFF (or #9CF).
#ADC0EB color RGB value is (173,192,235).
RGB: (173,192,235) (68%,75%,92%)
R 173 of 255 = 68%
G 192 of 255 = 75%
B 235 of 255 = 92%
R + G + B ~ 78%. #ADC0EB is quite light color.
R + G + B =
173 + 192 + 235 = 600 (100%)
R 173 of 600 ~ 28.83%
G 192 of 600 ~ 32%
B 235 of 600 ~ 39.17%
#ADC0EB color CMYK value is (26,18,0,8).
CMYK: (26,18,0,8) C26M18Y0K8 (26%,18%,0%,8%) (0.26/0.18/0.00/0.08)
AD | C0 | EB | |
---|---|---|---|
RGB | 173 | 192 | 235 |
HSL | 222° | 60.78% | 80.00% |
HSB/HSV | 222° | 26.38% | 92.16% |
CMYK | 26.38% | 18.30% | 0.00% |
7.84% |
HEX | AD | C0 | EB |
Decimal | 173 | 192 | 235 |
Binary | 10101101 | 11000000 | 11101011 |
Octal | 255 | 300 | 353 |
Examples of css and html codes for elements with #ADC0EB color. Also use rgb(173,192,235) instead hex code.
.myTextColor { color: #ADC0EB; }
<p style="color:#ADC0EB">This sample text font color is #ADC0EB.</p>
This text font color is #ADC0EB.
.myBgColor { background-color: #ADC0EB; }
<div style="background-color:#ADC0EB">Inner text</div>
This div background color is #ADC0EB.
.myBorderColor { border: 1px solid #ADC0EB; }
<div style="border:3px solid #ADC0EB">Div</div>
This div border color is #ADC0EB.
.myOpacity80 { color: #ADC0EB; opacity: 0.8; }
<p style="color:#ADC0EB;opacity:0.8;">80%</p>
Text with #ADC0EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC0EB;}
<p style="text-shadow: 3px 3px 1px #ADC0EB">Text here.</p>
This text has shadow with #ADC0EB color.
.textShadow {text-shadow: 3px 3px 1px #ADC0EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC0EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC0EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC0EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC0EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC0EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC0EB; -webkit-box-shadow: 1px 1px 3px 2px #ADC0EB; box-shadow: 1px 1px 3px 2px #ADC0EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC0EB; -webkit-box-shadow: 1px 1px 3px 2px #ADC0EB; box-shadow:1px 1px 3px 2px #ADC0EB;">
Div content here</div>
This text has color #ADC0EB on black background.
This text has color #ADC0EB on white background.
This text has black color on #ADC0EB background.
This text has white color on #ADC0EB background.