HEX: #ADABCE
RGB: (173,171,206)
#ADABCE contains red, green and blue colors in about the same proportion. Web safe color of #ADABCE is #9999CC (or #99C).
#ADABCE color RGB value is (173,171,206).
RGB: (173,171,206) (68%,67%,81%)
R 173 of 255 = 68%
G 171 of 255 = 67%
B 206 of 255 = 81%
R + G + B ~ 72%. #ADABCE is quite light color.
R + G + B =
173 + 171 + 206 = 550 (100%)
R 173 of 550 ~ 31.45%
G 171 of 550 ~ 31.09%
B 206 of 550 ~ 37.45%
#ADABCE color CMYK value is (16,17,0,19).
CMYK: (16,17,0,19) C16M17Y0K19 (16%,17%,0%,19%) (0.16/0.17/0.00/0.19)
AD | AB | CE | |
---|---|---|---|
RGB | 173 | 171 | 206 |
HSL | 243° | 26.32% | 73.92% |
HSB/HSV | 243° | 16.99% | 80.78% |
CMYK | 16.02% | 16.99% | 0.00% |
19.22% |
HEX | AD | AB | CE |
Decimal | 173 | 171 | 206 |
Binary | 10101101 | 10101011 | 11001110 |
Octal | 255 | 253 | 316 |
Examples of css and html codes for elements with #ADABCE color. Also use rgb(173,171,206) instead hex code.
.myTextColor { color: #ADABCE; }
<p style="color:#ADABCE">This sample text font color is #ADABCE.</p>
This text font color is #ADABCE.
.myBgColor { background-color: #ADABCE; }
<div style="background-color:#ADABCE">Inner text</div>
This div background color is #ADABCE.
.myBorderColor { border: 1px solid #ADABCE; }
<div style="border:3px solid #ADABCE">Div</div>
This div border color is #ADABCE.
.myOpacity80 { color: #ADABCE; opacity: 0.8; }
<p style="color:#ADABCE;opacity:0.8;">80%</p>
Text with #ADABCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADABCE;}
<p style="text-shadow: 3px 3px 1px #ADABCE">Text here.</p>
This text has shadow with #ADABCE color.
.textShadow {text-shadow: 3px 3px 1px #ADABCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADABCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADABCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADABCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADABCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADABCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADABCE; -webkit-box-shadow: 1px 1px 3px 2px #ADABCE; box-shadow: 1px 1px 3px 2px #ADABCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADABCE; -webkit-box-shadow: 1px 1px 3px 2px #ADABCE; box-shadow:1px 1px 3px 2px #ADABCE;">
Div content here</div>
This text has color #ADABCE on black background.
This text has color #ADABCE on white background.
This text has black color on #ADABCE background.
This text has white color on #ADABCE background.