HEX: #A5D9CA
RGB: (165,217,202)
#A5D9CA contains red, green and blue colors in about the same proportion. Web safe color of #A5D9CA is #99CCCC (or #9CC).
#A5D9CA color RGB value is (165,217,202).
RGB: (165,217,202) (65%,85%,79%)
R 165 of 255 = 65%
G 217 of 255 = 85%
B 202 of 255 = 79%
R + G + B ~ 76%. #A5D9CA is quite light color.
R + G + B =
165 + 217 + 202 = 584 (100%)
R 165 of 584 ~ 28.25%
G 217 of 584 ~ 37.16%
B 202 of 584 ~ 34.59%
#A5D9CA color CMYK value is (24,0,7,15).
CMYK: (24,0,7,15) C24M0Y7K15 (24%,0%,7%,15%) (0.24/0.00/0.07/0.15)
A5 | D9 | CA | |
---|---|---|---|
RGB | 165 | 217 | 202 |
HSL | 163° | 40.63% | 74.90% |
HSB/HSV | 163° | 23.96% | 85.10% |
CMYK | 23.96% | 0.00% | 6.91% |
14.90% |
HEX | A5 | D9 | CA |
Decimal | 165 | 217 | 202 |
Binary | 10100101 | 11011001 | 11001010 |
Octal | 245 | 331 | 312 |
Examples of css and html codes for elements with #A5D9CA color. Also use rgb(165,217,202) instead hex code.
.myTextColor { color: #A5D9CA; }
<p style="color:#A5D9CA">This sample text font color is #A5D9CA.</p>
This text font color is #A5D9CA.
.myBgColor { background-color: #A5D9CA; }
<div style="background-color:#A5D9CA">Inner text</div>
This div background color is #A5D9CA.
.myBorderColor { border: 1px solid #A5D9CA; }
<div style="border:3px solid #A5D9CA">Div</div>
This div border color is #A5D9CA.
.myOpacity80 { color: #A5D9CA; opacity: 0.8; }
<p style="color:#A5D9CA;opacity:0.8;">80%</p>
Text with #A5D9CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5D9CA;}
<p style="text-shadow: 3px 3px 1px #A5D9CA">Text here.</p>
This text has shadow with #A5D9CA color.
.textShadow {text-shadow: 3px 3px 1px #A5D9CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5D9CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5D9CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5D9CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5D9CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5D9CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5D9CA; -webkit-box-shadow: 1px 1px 3px 2px #A5D9CA; box-shadow: 1px 1px 3px 2px #A5D9CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5D9CA; -webkit-box-shadow: 1px 1px 3px 2px #A5D9CA; box-shadow:1px 1px 3px 2px #A5D9CA;">
Div content here</div>
This text has color #A5D9CA on black background.
This text has color #A5D9CA on white background.
This text has black color on #A5D9CA background.
This text has white color on #A5D9CA background.