HEX: #A2ABEB
RGB: (162,171,235)
#A2ABEB contains mainly blue color. Web safe color of #A2ABEB is #9999FF (or #99F).
#A2ABEB color RGB value is (162,171,235).
RGB: (162,171,235) (64%,67%,92%)
R 162 of 255 = 64%
G 171 of 255 = 67%
B 235 of 255 = 92%
R + G + B ~ 74%. #A2ABEB is quite light color.
R + G + B =
162 + 171 + 235 = 568 (100%)
R 162 of 568 ~ 28.52%
G 171 of 568 ~ 30.11%
B 235 of 568 ~ 41.37%
#A2ABEB color CMYK value is (31,27,0,8).
CMYK: (31,27,0,8) C31M27Y0K8 (31%,27%,0%,8%) (0.31/0.27/0.00/0.08)
A2 | AB | EB | |
---|---|---|---|
RGB | 162 | 171 | 235 |
HSL | 233° | 64.60% | 77.84% |
HSB/HSV | 233° | 31.06% | 92.16% |
CMYK | 31.06% | 27.23% | 0.00% |
7.84% |
HEX | A2 | AB | EB |
Decimal | 162 | 171 | 235 |
Binary | 10100010 | 10101011 | 11101011 |
Octal | 242 | 253 | 353 |
Examples of css and html codes for elements with #A2ABEB color. Also use rgb(162,171,235) instead hex code.
.myTextColor { color: #A2ABEB; }
<p style="color:#A2ABEB">This sample text font color is #A2ABEB.</p>
This text font color is #A2ABEB.
.myBgColor { background-color: #A2ABEB; }
<div style="background-color:#A2ABEB">Inner text</div>
This div background color is #A2ABEB.
.myBorderColor { border: 1px solid #A2ABEB; }
<div style="border:3px solid #A2ABEB">Div</div>
This div border color is #A2ABEB.
.myOpacity80 { color: #A2ABEB; opacity: 0.8; }
<p style="color:#A2ABEB;opacity:0.8;">80%</p>
Text with #A2ABEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A2ABEB;}
<p style="text-shadow: 3px 3px 1px #A2ABEB">Text here.</p>
This text has shadow with #A2ABEB color.
.textShadow {text-shadow: 3px 3px 1px #A2ABEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A2ABEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A2ABEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A2ABEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A2ABEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A2ABEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A2ABEB; -webkit-box-shadow: 1px 1px 3px 2px #A2ABEB; box-shadow: 1px 1px 3px 2px #A2ABEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A2ABEB; -webkit-box-shadow: 1px 1px 3px 2px #A2ABEB; box-shadow:1px 1px 3px 2px #A2ABEB;">
Div content here</div>
This text has color #A2ABEB on black background.
This text has color #A2ABEB on white background.
This text has black color on #A2ABEB background.
This text has white color on #A2ABEB background.