HEX: #A5D3DF
RGB: (165,211,223)
#A5D3DF contains red, green and blue colors in about the same proportion. Web safe color of #A5D3DF is #99CCCC (or #9CC).
#A5D3DF color RGB value is (165,211,223).
RGB: (165,211,223) (65%,83%,87%)
R 165 of 255 = 65%
G 211 of 255 = 83%
B 223 of 255 = 87%
R + G + B ~ 78%. #A5D3DF is quite light color.
R + G + B =
165 + 211 + 223 = 599 (100%)
R 165 of 599 ~ 27.55%
G 211 of 599 ~ 35.23%
B 223 of 599 ~ 37.23%
#A5D3DF color CMYK value is (26,5,0,13).
CMYK: (26,5,0,13) C26M5Y0K13 (26%,5%,0%,13%) (0.26/0.05/0.00/0.13)
A5 | D3 | DF | |
---|---|---|---|
RGB | 165 | 211 | 223 |
HSL | 192° | 47.54% | 76.08% |
HSB/HSV | 192° | 26.01% | 87.45% |
CMYK | 26.01% | 5.38% | 0.00% |
12.55% |
HEX | A5 | D3 | DF |
Decimal | 165 | 211 | 223 |
Binary | 10100101 | 11010011 | 11011111 |
Octal | 245 | 323 | 337 |
Examples of css and html codes for elements with #A5D3DF color. Also use rgb(165,211,223) instead hex code.
.myTextColor { color: #A5D3DF; }
<p style="color:#A5D3DF">This sample text font color is #A5D3DF.</p>
This text font color is #A5D3DF.
.myBgColor { background-color: #A5D3DF; }
<div style="background-color:#A5D3DF">Inner text</div>
This div background color is #A5D3DF.
.myBorderColor { border: 1px solid #A5D3DF; }
<div style="border:3px solid #A5D3DF">Div</div>
This div border color is #A5D3DF.
.myOpacity80 { color: #A5D3DF; opacity: 0.8; }
<p style="color:#A5D3DF;opacity:0.8;">80%</p>
Text with #A5D3DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5D3DF;}
<p style="text-shadow: 3px 3px 1px #A5D3DF">Text here.</p>
This text has shadow with #A5D3DF color.
.textShadow {text-shadow: 3px 3px 1px #A5D3DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5D3DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5D3DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5D3DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5D3DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5D3DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5D3DF; -webkit-box-shadow: 1px 1px 3px 2px #A5D3DF; box-shadow: 1px 1px 3px 2px #A5D3DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5D3DF; -webkit-box-shadow: 1px 1px 3px 2px #A5D3DF; box-shadow:1px 1px 3px 2px #A5D3DF;">
Div content here</div>
This text has color #A5D3DF on black background.
This text has color #A5D3DF on white background.
This text has black color on #A5D3DF background.
This text has white color on #A5D3DF background.