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