HEX: #ADA3EB
RGB: (173,163,235)
#ADA3EB contains mainly blue color. Web safe color of #ADA3EB is #9999FF (or #99F).
#ADA3EB color RGB value is (173,163,235).
RGB: (173,163,235) (68%,64%,92%)
R 173 of 255 = 68%
G 163 of 255 = 64%
B 235 of 255 = 92%
R + G + B ~ 75%. #ADA3EB is quite light color.
R + G + B =
173 + 163 + 235 = 571 (100%)
R 173 of 571 ~ 30.3%
G 163 of 571 ~ 28.55%
B 235 of 571 ~ 41.16%
#ADA3EB color CMYK value is (26,31,0,8).
CMYK: (26,31,0,8) C26M31Y0K8 (26%,31%,0%,8%) (0.26/0.31/0.00/0.08)
AD | A3 | EB | |
---|---|---|---|
RGB | 173 | 163 | 235 |
HSL | 248° | 64.29% | 78.04% |
HSB/HSV | 248° | 30.64% | 92.16% |
CMYK | 26.38% | 30.64% | 0.00% |
7.84% |
HEX | AD | A3 | EB |
Decimal | 173 | 163 | 235 |
Binary | 10101101 | 10100011 | 11101011 |
Octal | 255 | 243 | 353 |
Examples of css and html codes for elements with #ADA3EB color. Also use rgb(173,163,235) instead hex code.
.myTextColor { color: #ADA3EB; }
<p style="color:#ADA3EB">This sample text font color is #ADA3EB.</p>
This text font color is #ADA3EB.
.myBgColor { background-color: #ADA3EB; }
<div style="background-color:#ADA3EB">Inner text</div>
This div background color is #ADA3EB.
.myBorderColor { border: 1px solid #ADA3EB; }
<div style="border:3px solid #ADA3EB">Div</div>
This div border color is #ADA3EB.
.myOpacity80 { color: #ADA3EB; opacity: 0.8; }
<p style="color:#ADA3EB;opacity:0.8;">80%</p>
Text with #ADA3EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADA3EB;}
<p style="text-shadow: 3px 3px 1px #ADA3EB">Text here.</p>
This text has shadow with #ADA3EB color.
.textShadow {text-shadow: 3px 3px 1px #ADA3EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADA3EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADA3EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADA3EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADA3EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADA3EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADA3EB; -webkit-box-shadow: 1px 1px 3px 2px #ADA3EB; box-shadow: 1px 1px 3px 2px #ADA3EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADA3EB; -webkit-box-shadow: 1px 1px 3px 2px #ADA3EB; box-shadow:1px 1px 3px 2px #ADA3EB;">
Div content here</div>
This text has color #ADA3EB on black background.
This text has color #ADA3EB on white background.
This text has black color on #ADA3EB background.
This text has white color on #ADA3EB background.