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