HEX: #A0ADCB
RGB: (160,173,203)
#A0ADCB contains red, green and blue colors in about the same proportion. Web safe color of #A0ADCB is #9999CC (or #99C).
#A0ADCB color RGB value is (160,173,203).
RGB: (160,173,203) (63%,68%,80%)
R 160 of 255 = 63%
G 173 of 255 = 68%
B 203 of 255 = 80%
R + G + B ~ 70%. #A0ADCB is quite light color.
R + G + B =
160 + 173 + 203 = 536 (100%)
R 160 of 536 ~ 29.85%
G 173 of 536 ~ 32.28%
B 203 of 536 ~ 37.87%
#A0ADCB color CMYK value is (21,15,0,20).
CMYK: (21,15,0,20) C21M15Y0K20 (21%,15%,0%,20%) (0.21/0.15/0.00/0.20)
A0 | AD | CB | |
---|---|---|---|
RGB | 160 | 173 | 203 |
HSL | 222° | 29.25% | 71.18% |
HSB/HSV | 222° | 21.18% | 79.61% |
CMYK | 21.18% | 14.78% | 0.00% |
20.39% |
HEX | A0 | AD | CB |
Decimal | 160 | 173 | 203 |
Binary | 10100000 | 10101101 | 11001011 |
Octal | 240 | 255 | 313 |
Examples of css and html codes for elements with #A0ADCB color. Also use rgb(160,173,203) instead hex code.
.myTextColor { color: #A0ADCB; }
<p style="color:#A0ADCB">This sample text font color is #A0ADCB.</p>
This text font color is #A0ADCB.
.myBgColor { background-color: #A0ADCB; }
<div style="background-color:#A0ADCB">Inner text</div>
This div background color is #A0ADCB.
.myBorderColor { border: 1px solid #A0ADCB; }
<div style="border:3px solid #A0ADCB">Div</div>
This div border color is #A0ADCB.
.myOpacity80 { color: #A0ADCB; opacity: 0.8; }
<p style="color:#A0ADCB;opacity:0.8;">80%</p>
Text with #A0ADCB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A0ADCB;}
<p style="text-shadow: 3px 3px 1px #A0ADCB">Text here.</p>
This text has shadow with #A0ADCB color.
.textShadow {text-shadow: 3px 3px 1px #A0ADCB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A0ADCB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A0ADCB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A0ADCB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A0ADCB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A0ADCB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A0ADCB; -webkit-box-shadow: 1px 1px 3px 2px #A0ADCB; box-shadow: 1px 1px 3px 2px #A0ADCB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A0ADCB; -webkit-box-shadow: 1px 1px 3px 2px #A0ADCB; box-shadow:1px 1px 3px 2px #A0ADCB;">
Div content here</div>
This text has color #A0ADCB on black background.
This text has color #A0ADCB on white background.
This text has black color on #A0ADCB background.
This text has white color on #A0ADCB background.