HEX: #ADC8DC
RGB: (173,200,220)
#ADC8DC contains red, green and blue colors in about the same proportion. #ADC8DC ‘ nin web güvenlik rengi #99CCCC (ya da #9CC) dir.
#ADC8DC color RGB value is (173,200,220).
RGB: (173,200,220) (68%,78%,86%)
R 173 of 255 = 68%
G 200 of 255 = 78%
B 220 of 255 = 86%
R + G + B ~ 77%. #ADC8DC is quite light color.
R + G + B =
173 + 200 + 220 = 593 (100%)
R 173 of 593 ~ 29.17%
G 200 of 593 ~ 33.73%
B 220 of 593 ~ 37.1%
#ADC8DC rengi CMYK tonu (21,9,0,14).
CMYK: (21,9,0,14) C21M9Y0K14 (21%,9%,0%,14%) (0.21/0.09/0.00/0.14)
AD | C8 | DC | |
---|---|---|---|
RGB | 173 | 200 | 220 |
HSL | 206° | 40.17% | 77.06% |
HSB/HSV | 206° | 21.36% | 86.27% |
CMYK | 21.36% | 9.09% | 0.00% |
13.73% |
HEX | AD | C8 | DC |
Decimal | 173 | 200 | 220 |
Binary | 10101101 | 11001000 | 11011100 |
Octal | 255 | 310 | 334 |
Examples of css and html codes for elements with #ADC8DC color. Also use rgb(173,200,220) instead hex code.
.myTextColor { color: #ADC8DC; }
<p style="color:#ADC8DC">This sample text font color is #ADC8DC.</p>
This text font color is #ADC8DC.
.myBgColor { background-color: #ADC8DC; }
<div style="background-color:#ADC8DC">Inner text</div>
This div background color is #ADC8DC.
.myBorderColor { border: 1px solid #ADC8DC; }
<div style="border:3px solid #ADC8DC">Div</div>
This div border color is #ADC8DC.
.myOpacity80 { color: #ADC8DC; opacity: 0.8; }
<p style="color:#ADC8DC;opacity:0.8;">80%</p>
Text with #ADC8DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC8DC;}
<p style="text-shadow: 3px 3px 1px #ADC8DC">Text here.</p>
This text has shadow with #ADC8DC color.
.textShadow {text-shadow: 3px 3px 1px #ADC8DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC8DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC8DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC8DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC8DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC8DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC8DC; -webkit-box-shadow: 1px 1px 3px 2px #ADC8DC; box-shadow: 1px 1px 3px 2px #ADC8DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC8DC; -webkit-box-shadow: 1px 1px 3px 2px #ADC8DC; box-shadow:1px 1px 3px 2px #ADC8DC;">
Div content here</div>
This text has color #ADC8DC on black background.
This text has color #ADC8DC on white background.
This text has black color on #ADC8DC background.
This text has white color on #ADC8DC background.