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