HEX: #A2BBDD
RGB: (162,187,221)
#A2BBDD contains red, green and blue colors in about the same proportion. Web safe color of #A2BBDD is #99CCCC (or #9CC).
#A2BBDD color RGB value is (162,187,221).
RGB: (162,187,221) (64%,73%,87%)
R 162 of 255 = 64%
G 187 of 255 = 73%
B 221 of 255 = 87%
R + G + B ~ 75%. #A2BBDD is quite light color.
R + G + B =
162 + 187 + 221 = 570 (100%)
R 162 of 570 ~ 28.42%
G 187 of 570 ~ 32.81%
B 221 of 570 ~ 38.77%
#A2BBDD color CMYK value is (27,15,0,13).
CMYK: (27,15,0,13) C27M15Y0K13 (27%,15%,0%,13%) (0.27/0.15/0.00/0.13)
A2 | BB | DD | |
---|---|---|---|
RGB | 162 | 187 | 221 |
HSL | 215° | 46.46% | 75.10% |
HSB/HSV | 215° | 26.70% | 86.67% |
CMYK | 26.70% | 15.38% | 0.00% |
13.33% |
HEX | A2 | BB | DD |
Decimal | 162 | 187 | 221 |
Binary | 10100010 | 10111011 | 11011101 |
Octal | 242 | 273 | 335 |
Examples of css and html codes for elements with #A2BBDD color. Also use rgb(162,187,221) instead hex code.
.myTextColor { color: #A2BBDD; }
<p style="color:#A2BBDD">This sample text font color is #A2BBDD.</p>
This text font color is #A2BBDD.
.myBgColor { background-color: #A2BBDD; }
<div style="background-color:#A2BBDD">Inner text</div>
This div background color is #A2BBDD.
.myBorderColor { border: 1px solid #A2BBDD; }
<div style="border:3px solid #A2BBDD">Div</div>
This div border color is #A2BBDD.
.myOpacity80 { color: #A2BBDD; opacity: 0.8; }
<p style="color:#A2BBDD;opacity:0.8;">80%</p>
Text with #A2BBDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A2BBDD;}
<p style="text-shadow: 3px 3px 1px #A2BBDD">Text here.</p>
This text has shadow with #A2BBDD color.
.textShadow {text-shadow: 3px 3px 1px #A2BBDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A2BBDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A2BBDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A2BBDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A2BBDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A2BBDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A2BBDD; -webkit-box-shadow: 1px 1px 3px 2px #A2BBDD; box-shadow: 1px 1px 3px 2px #A2BBDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A2BBDD; -webkit-box-shadow: 1px 1px 3px 2px #A2BBDD; box-shadow:1px 1px 3px 2px #A2BBDD;">
Div content here</div>
This text has color #A2BBDD on black background.
This text has color #A2BBDD on white background.
This text has black color on #A2BBDD background.
This text has white color on #A2BBDD background.