HEX: #ADCEDD
RGB: (173,206,221)
#ADCEDD contains red, green and blue colors in about the same proportion. #ADCEDD ‘ nin web güvenlik rengi #99CCCC (ya da #9CC) dir.
#ADCEDD color RGB value is (173,206,221).
RGB: (173,206,221) (68%,81%,87%)
R 173 of 255 = 68%
G 206 of 255 = 81%
B 221 of 255 = 87%
R + G + B ~ 79%. #ADCEDD is quite light color.
R + G + B =
173 + 206 + 221 = 600 (100%)
R 173 of 600 ~ 28.83%
G 206 of 600 ~ 34.33%
B 221 of 600 ~ 36.83%
#ADCEDD rengi CMYK tonu (22,7,0,13).
CMYK: (22,7,0,13) C22M7Y0K13 (22%,7%,0%,13%) (0.22/0.07/0.00/0.13)
AD | CE | DD | |
---|---|---|---|
RGB | 173 | 206 | 221 |
HSL | 199° | 41.38% | 77.25% |
HSB/HSV | 199° | 21.72% | 86.67% |
CMYK | 21.72% | 6.79% | 0.00% |
13.33% |
HEX | AD | CE | DD |
Decimal | 173 | 206 | 221 |
Binary | 10101101 | 11001110 | 11011101 |
Octal | 255 | 316 | 335 |
Examples of css and html codes for elements with #ADCEDD color. Also use rgb(173,206,221) instead hex code.
.myTextColor { color: #ADCEDD; }
<p style="color:#ADCEDD">This sample text font color is #ADCEDD.</p>
This text font color is #ADCEDD.
.myBgColor { background-color: #ADCEDD; }
<div style="background-color:#ADCEDD">Inner text</div>
This div background color is #ADCEDD.
.myBorderColor { border: 1px solid #ADCEDD; }
<div style="border:3px solid #ADCEDD">Div</div>
This div border color is #ADCEDD.
.myOpacity80 { color: #ADCEDD; opacity: 0.8; }
<p style="color:#ADCEDD;opacity:0.8;">80%</p>
Text with #ADCEDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADCEDD;}
<p style="text-shadow: 3px 3px 1px #ADCEDD">Text here.</p>
This text has shadow with #ADCEDD color.
.textShadow {text-shadow: 3px 3px 1px #ADCEDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADCEDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADCEDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADCEDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADCEDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADCEDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADCEDD; -webkit-box-shadow: 1px 1px 3px 2px #ADCEDD; box-shadow: 1px 1px 3px 2px #ADCEDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADCEDD; -webkit-box-shadow: 1px 1px 3px 2px #ADCEDD; box-shadow:1px 1px 3px 2px #ADCEDD;">
Div content here</div>
This text has color #ADCEDD on black background.
This text has color #ADCEDD on white background.
This text has black color on #ADCEDD background.
This text has white color on #ADCEDD background.