HEX: #A5FACB
RGB: (165,250,203)
#A5FACB contains mainly green and blue colors. Web safe color of #A5FACB is #99FFCC (or #9FC).
#A5FACB color RGB value is (165,250,203).
RGB: (165,250,203) (65%,98%,80%)
R 165 of 255 = 65%
G 250 of 255 = 98%
B 203 of 255 = 80%
R + G + B ~ 81%. #A5FACB is quite light color.
R + G + B =
165 + 250 + 203 = 618 (100%)
R 165 of 618 ~ 26.7%
G 250 of 618 ~ 40.45%
B 203 of 618 ~ 32.85%
#A5FACB color CMYK value is (34,0,19,2).
CMYK: (34,0,19,2) C34M0Y19K2 (34%,0%,19%,2%) (0.34/0.00/0.19/0.02)
A5 | FA | CB | |
---|---|---|---|
RGB | 165 | 250 | 203 |
HSL | 147° | 89.47% | 81.37% |
HSB/HSV | 147° | 34.00% | 98.04% |
CMYK | 34.00% | 0.00% | 18.80% |
1.96% |
HEX | A5 | FA | CB |
Decimal | 165 | 250 | 203 |
Binary | 10100101 | 11111010 | 11001011 |
Octal | 245 | 372 | 313 |
Examples of css and html codes for elements with #A5FACB color. Also use rgb(165,250,203) instead hex code.
.myTextColor { color: #A5FACB; }
<p style="color:#A5FACB">This sample text font color is #A5FACB.</p>
This text font color is #A5FACB.
.myBgColor { background-color: #A5FACB; }
<div style="background-color:#A5FACB">Inner text</div>
This div background color is #A5FACB.
.myBorderColor { border: 1px solid #A5FACB; }
<div style="border:3px solid #A5FACB">Div</div>
This div border color is #A5FACB.
.myOpacity80 { color: #A5FACB; opacity: 0.8; }
<p style="color:#A5FACB;opacity:0.8;">80%</p>
Text with #A5FACB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5FACB;}
<p style="text-shadow: 3px 3px 1px #A5FACB">Text here.</p>
This text has shadow with #A5FACB color.
.textShadow {text-shadow: 3px 3px 1px #A5FACB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5FACB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5FACB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5FACB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5FACB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5FACB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5FACB; -webkit-box-shadow: 1px 1px 3px 2px #A5FACB; box-shadow: 1px 1px 3px 2px #A5FACB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5FACB; -webkit-box-shadow: 1px 1px 3px 2px #A5FACB; box-shadow:1px 1px 3px 2px #A5FACB;">
Div content here</div>
This text has color #A5FACB on black background.
This text has color #A5FACB on white background.
This text has black color on #A5FACB background.
This text has white color on #A5FACB background.