HEX: #B5FACA
RGB: (181,250,202)
#B5FACA contains mainly green and blue colors. Web safe color of #B5FACA is #CCFFCC (or #CFC).
#B5FACA color RGB value is (181,250,202).
RGB: (181,250,202) (71%,98%,79%)
R 181 of 255 = 71%
G 250 of 255 = 98%
B 202 of 255 = 79%
R + G + B ~ 83%. #B5FACA is quite light color.
R + G + B =
181 + 250 + 202 = 633 (100%)
R 181 of 633 ~ 28.59%
G 250 of 633 ~ 39.49%
B 202 of 633 ~ 31.91%
#B5FACA color CMYK value is (28,0,19,2).
CMYK: (28,0,19,2) C28M0Y19K2 (28%,0%,19%,2%) (0.28/0.00/0.19/0.02)
B5 | FA | CA | |
---|---|---|---|
RGB | 181 | 250 | 202 |
HSL | 138° | 87.34% | 84.51% |
HSB/HSV | 138° | 27.60% | 98.04% |
CMYK | 27.60% | 0.00% | 19.20% |
1.96% |
HEX | B5 | FA | CA |
Decimal | 181 | 250 | 202 |
Binary | 10110101 | 11111010 | 11001010 |
Octal | 265 | 372 | 312 |
Examples of css and html codes for elements with #B5FACA color. Also use rgb(181,250,202) instead hex code.
.myTextColor { color: #B5FACA; }
<p style="color:#B5FACA">This sample text font color is #B5FACA.</p>
This text font color is #B5FACA.
.myBgColor { background-color: #B5FACA; }
<div style="background-color:#B5FACA">Inner text</div>
This div background color is #B5FACA.
.myBorderColor { border: 1px solid #B5FACA; }
<div style="border:3px solid #B5FACA">Div</div>
This div border color is #B5FACA.
.myOpacity80 { color: #B5FACA; opacity: 0.8; }
<p style="color:#B5FACA;opacity:0.8;">80%</p>
Text with #B5FACA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5FACA;}
<p style="text-shadow: 3px 3px 1px #B5FACA">Text here.</p>
This text has shadow with #B5FACA color.
.textShadow {text-shadow: 3px 3px 1px #B5FACA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5FACA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5FACA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5FACA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5FACA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5FACA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5FACA; -webkit-box-shadow: 1px 1px 3px 2px #B5FACA; box-shadow: 1px 1px 3px 2px #B5FACA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5FACA; -webkit-box-shadow: 1px 1px 3px 2px #B5FACA; box-shadow:1px 1px 3px 2px #B5FACA;">
Div content here</div>
This text has color #B5FACA on black background.
This text has color #B5FACA on white background.
This text has black color on #B5FACA background.
This text has white color on #B5FACA background.