HEX: #A5D1EF
RGB: (165,209,239)
#A5D1EF contains mainly green and blue colors. Web safe color of #A5D1EF is #99CCFF (or #9CF).
#A5D1EF color RGB value is (165,209,239).
RGB: (165,209,239) (65%,82%,94%)
R 165 of 255 = 65%
G 209 of 255 = 82%
B 239 of 255 = 94%
R + G + B ~ 80%. #A5D1EF is quite light color.
R + G + B =
165 + 209 + 239 = 613 (100%)
R 165 of 613 ~ 26.92%
G 209 of 613 ~ 34.09%
B 239 of 613 ~ 38.99%
#A5D1EF color CMYK value is (31,13,0,6).
CMYK: (31,13,0,6) C31M13Y0K6 (31%,13%,0%,6%) (0.31/0.13/0.00/0.06)
A5 | D1 | EF | |
---|---|---|---|
RGB | 165 | 209 | 239 |
HSL | 204° | 69.81% | 79.22% |
HSB/HSV | 204° | 30.96% | 93.73% |
CMYK | 30.96% | 12.55% | 0.00% |
6.27% |
HEX | A5 | D1 | EF |
Decimal | 165 | 209 | 239 |
Binary | 10100101 | 11010001 | 11101111 |
Octal | 245 | 321 | 357 |
Examples of css and html codes for elements with #A5D1EF color. Also use rgb(165,209,239) instead hex code.
.myTextColor { color: #A5D1EF; }
<p style="color:#A5D1EF">This sample text font color is #A5D1EF.</p>
This text font color is #A5D1EF.
.myBgColor { background-color: #A5D1EF; }
<div style="background-color:#A5D1EF">Inner text</div>
This div background color is #A5D1EF.
.myBorderColor { border: 1px solid #A5D1EF; }
<div style="border:3px solid #A5D1EF">Div</div>
This div border color is #A5D1EF.
.myOpacity80 { color: #A5D1EF; opacity: 0.8; }
<p style="color:#A5D1EF;opacity:0.8;">80%</p>
Text with #A5D1EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5D1EF;}
<p style="text-shadow: 3px 3px 1px #A5D1EF">Text here.</p>
This text has shadow with #A5D1EF color.
.textShadow {text-shadow: 3px 3px 1px #A5D1EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5D1EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5D1EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5D1EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5D1EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5D1EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5D1EF; -webkit-box-shadow: 1px 1px 3px 2px #A5D1EF; box-shadow: 1px 1px 3px 2px #A5D1EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5D1EF; -webkit-box-shadow: 1px 1px 3px 2px #A5D1EF; box-shadow:1px 1px 3px 2px #A5D1EF;">
Div content here</div>
This text has color #A5D1EF on black background.
This text has color #A5D1EF on white background.
This text has black color on #A5D1EF background.
This text has white color on #A5D1EF background.