HEX: #A5B3CA
RGB: (165,179,202)
#A5B3CA contains red, green and blue colors in about the same proportion. Web safe color of #A5B3CA is #9999CC (or #99C).
#A5B3CA color RGB value is (165,179,202).
RGB: (165,179,202) (65%,70%,79%)
R 165 of 255 = 65%
G 179 of 255 = 70%
B 202 of 255 = 79%
R + G + B ~ 71%. #A5B3CA is quite light color.
R + G + B =
165 + 179 + 202 = 546 (100%)
R 165 of 546 ~ 30.22%
G 179 of 546 ~ 32.78%
B 202 of 546 ~ 37%
#A5B3CA color CMYK value is (18,11,0,21).
CMYK: (18,11,0,21) C18M11Y0K21 (18%,11%,0%,21%) (0.18/0.11/0.00/0.21)
A5 | B3 | CA | |
---|---|---|---|
RGB | 165 | 179 | 202 |
HSL | 217° | 25.87% | 71.96% |
HSB/HSV | 217° | 18.32% | 79.22% |
CMYK | 18.32% | 11.39% | 0.00% |
20.78% |
HEX | A5 | B3 | CA |
Decimal | 165 | 179 | 202 |
Binary | 10100101 | 10110011 | 11001010 |
Octal | 245 | 263 | 312 |
Examples of css and html codes for elements with #A5B3CA color. Also use rgb(165,179,202) instead hex code.
.myTextColor { color: #A5B3CA; }
<p style="color:#A5B3CA">This sample text font color is #A5B3CA.</p>
This text font color is #A5B3CA.
.myBgColor { background-color: #A5B3CA; }
<div style="background-color:#A5B3CA">Inner text</div>
This div background color is #A5B3CA.
.myBorderColor { border: 1px solid #A5B3CA; }
<div style="border:3px solid #A5B3CA">Div</div>
This div border color is #A5B3CA.
.myOpacity80 { color: #A5B3CA; opacity: 0.8; }
<p style="color:#A5B3CA;opacity:0.8;">80%</p>
Text with #A5B3CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5B3CA;}
<p style="text-shadow: 3px 3px 1px #A5B3CA">Text here.</p>
This text has shadow with #A5B3CA color.
.textShadow {text-shadow: 3px 3px 1px #A5B3CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5B3CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5B3CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5B3CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5B3CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5B3CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5B3CA; -webkit-box-shadow: 1px 1px 3px 2px #A5B3CA; box-shadow: 1px 1px 3px 2px #A5B3CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5B3CA; -webkit-box-shadow: 1px 1px 3px 2px #A5B3CA; box-shadow:1px 1px 3px 2px #A5B3CA;">
Div content here</div>
This text has color #A5B3CA on black background.
This text has color #A5B3CA on white background.
This text has black color on #A5B3CA background.
This text has white color on #A5B3CA background.