HEX: #A5EACD
RGB: (165,234,205)
#A5EACD contains mainly green and blue colors. Web safe color of #A5EACD is #99FFCC (or #9FC).
#A5EACD color RGB value is (165,234,205).
RGB: (165,234,205) (65%,92%,80%)
R 165 of 255 = 65%
G 234 of 255 = 92%
B 205 of 255 = 80%
R + G + B ~ 79%. #A5EACD is quite light color.
R + G + B =
165 + 234 + 205 = 604 (100%)
R 165 of 604 ~ 27.32%
G 234 of 604 ~ 38.74%
B 205 of 604 ~ 33.94%
#A5EACD color CMYK value is (29,0,12,8).
CMYK: (29,0,12,8) C29M0Y12K8 (29%,0%,12%,8%) (0.29/0.00/0.12/0.08)
A5 | EA | CD | |
---|---|---|---|
RGB | 165 | 234 | 205 |
HSL | 155° | 62.16% | 78.24% |
HSB/HSV | 155° | 29.49% | 91.76% |
CMYK | 29.49% | 0.00% | 12.39% |
8.24% |
HEX | A5 | EA | CD |
Decimal | 165 | 234 | 205 |
Binary | 10100101 | 11101010 | 11001101 |
Octal | 245 | 352 | 315 |
Examples of css and html codes for elements with #A5EACD color. Also use rgb(165,234,205) instead hex code.
.myTextColor { color: #A5EACD; }
<p style="color:#A5EACD">This sample text font color is #A5EACD.</p>
This text font color is #A5EACD.
.myBgColor { background-color: #A5EACD; }
<div style="background-color:#A5EACD">Inner text</div>
This div background color is #A5EACD.
.myBorderColor { border: 1px solid #A5EACD; }
<div style="border:3px solid #A5EACD">Div</div>
This div border color is #A5EACD.
.myOpacity80 { color: #A5EACD; opacity: 0.8; }
<p style="color:#A5EACD;opacity:0.8;">80%</p>
Text with #A5EACD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5EACD;}
<p style="text-shadow: 3px 3px 1px #A5EACD">Text here.</p>
This text has shadow with #A5EACD color.
.textShadow {text-shadow: 3px 3px 1px #A5EACD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5EACD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5EACD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5EACD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5EACD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5EACD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5EACD; -webkit-box-shadow: 1px 1px 3px 2px #A5EACD; box-shadow: 1px 1px 3px 2px #A5EACD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5EACD; -webkit-box-shadow: 1px 1px 3px 2px #A5EACD; box-shadow:1px 1px 3px 2px #A5EACD;">
Div content here</div>
This text has color #A5EACD on black background.
This text has color #A5EACD on white background.
This text has black color on #A5EACD background.
This text has white color on #A5EACD background.