HEX: #A5C3EC
RGB: (165,195,236)
#A5C3EC contains mainly green and blue colors. Web safe color of #A5C3EC is #99CCFF (or #9CF).
#A5C3EC color RGB value is (165,195,236).
RGB: (165,195,236) (65%,76%,93%)
R 165 of 255 = 65%
G 195 of 255 = 76%
B 236 of 255 = 93%
R + G + B ~ 78%. #A5C3EC is quite light color.
R + G + B =
165 + 195 + 236 = 596 (100%)
R 165 of 596 ~ 27.68%
G 195 of 596 ~ 32.72%
B 236 of 596 ~ 39.6%
#A5C3EC color CMYK value is (30,17,0,7).
CMYK: (30,17,0,7) C30M17Y0K7 (30%,17%,0%,7%) (0.30/0.17/0.00/0.07)
A5 | C3 | EC | |
---|---|---|---|
RGB | 165 | 195 | 236 |
HSL | 215° | 65.14% | 78.63% |
HSB/HSV | 215° | 30.08% | 92.55% |
CMYK | 30.08% | 17.37% | 0.00% |
7.45% |
HEX | A5 | C3 | EC |
Decimal | 165 | 195 | 236 |
Binary | 10100101 | 11000011 | 11101100 |
Octal | 245 | 303 | 354 |
Examples of css and html codes for elements with #A5C3EC color. Also use rgb(165,195,236) instead hex code.
.myTextColor { color: #A5C3EC; }
<p style="color:#A5C3EC">This sample text font color is #A5C3EC.</p>
This text font color is #A5C3EC.
.myBgColor { background-color: #A5C3EC; }
<div style="background-color:#A5C3EC">Inner text</div>
This div background color is #A5C3EC.
.myBorderColor { border: 1px solid #A5C3EC; }
<div style="border:3px solid #A5C3EC">Div</div>
This div border color is #A5C3EC.
.myOpacity80 { color: #A5C3EC; opacity: 0.8; }
<p style="color:#A5C3EC;opacity:0.8;">80%</p>
Text with #A5C3EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5C3EC;}
<p style="text-shadow: 3px 3px 1px #A5C3EC">Text here.</p>
This text has shadow with #A5C3EC color.
.textShadow {text-shadow: 3px 3px 1px #A5C3EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5C3EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5C3EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5C3EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5C3EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5C3EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5C3EC; -webkit-box-shadow: 1px 1px 3px 2px #A5C3EC; box-shadow: 1px 1px 3px 2px #A5C3EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5C3EC; -webkit-box-shadow: 1px 1px 3px 2px #A5C3EC; box-shadow:1px 1px 3px 2px #A5C3EC;">
Div content here</div>
This text has color #A5C3EC on black background.
This text has color #A5C3EC on white background.
This text has black color on #A5C3EC background.
This text has white color on #A5C3EC background.