HEX: #A5DCDA
RGB: (165,220,218)
#A5DCDA contains red, green and blue colors in about the same proportion. Web safe color of #A5DCDA is #99CCCC (or #9CC).
#A5DCDA color RGB value is (165,220,218).
RGB: (165,220,218) (65%,86%,85%)
R 165 of 255 = 65%
G 220 of 255 = 86%
B 218 of 255 = 85%
R + G + B ~ 79%. #A5DCDA is quite light color.
R + G + B =
165 + 220 + 218 = 603 (100%)
R 165 of 603 ~ 27.36%
G 220 of 603 ~ 36.48%
B 218 of 603 ~ 36.15%
#A5DCDA color CMYK value is (25,0,1,14).
CMYK: (25,0,1,14) C25M0Y1K14 (25%,0%,1%,14%) (0.25/0.00/0.01/0.14)
A5 | DC | DA | |
---|---|---|---|
RGB | 165 | 220 | 218 |
HSL | 178° | 44.00% | 75.49% |
HSB/HSV | 178° | 25.00% | 86.27% |
CMYK | 25.00% | 0.00% | 0.91% |
13.73% |
HEX | A5 | DC | DA |
Decimal | 165 | 220 | 218 |
Binary | 10100101 | 11011100 | 11011010 |
Octal | 245 | 334 | 332 |
Examples of css and html codes for elements with #A5DCDA color. Also use rgb(165,220,218) instead hex code.
.myTextColor { color: #A5DCDA; }
<p style="color:#A5DCDA">This sample text font color is #A5DCDA.</p>
This text font color is #A5DCDA.
.myBgColor { background-color: #A5DCDA; }
<div style="background-color:#A5DCDA">Inner text</div>
This div background color is #A5DCDA.
.myBorderColor { border: 1px solid #A5DCDA; }
<div style="border:3px solid #A5DCDA">Div</div>
This div border color is #A5DCDA.
.myOpacity80 { color: #A5DCDA; opacity: 0.8; }
<p style="color:#A5DCDA;opacity:0.8;">80%</p>
Text with #A5DCDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5DCDA;}
<p style="text-shadow: 3px 3px 1px #A5DCDA">Text here.</p>
This text has shadow with #A5DCDA color.
.textShadow {text-shadow: 3px 3px 1px #A5DCDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5DCDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5DCDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5DCDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5DCDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5DCDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5DCDA; -webkit-box-shadow: 1px 1px 3px 2px #A5DCDA; box-shadow: 1px 1px 3px 2px #A5DCDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5DCDA; -webkit-box-shadow: 1px 1px 3px 2px #A5DCDA; box-shadow:1px 1px 3px 2px #A5DCDA;">
Div content here</div>
This text has color #A5DCDA on black background.
This text has color #A5DCDA on white background.
This text has black color on #A5DCDA background.
This text has white color on #A5DCDA background.