HEX: #B5E1AD
RGB: (181,225,173)
#B5E1AD contains red, green and blue colors in about the same proportion. Web safe color of #B5E1AD is #CCCC99 (or #CC9).
#B5E1AD color RGB value is (181,225,173).
RGB: (181,225,173) (71%,88%,68%)
R 181 of 255 = 71%
G 225 of 255 = 88%
B 173 of 255 = 68%
R + G + B ~ 76%. #B5E1AD is quite light color.
R + G + B =
181 + 225 + 173 = 579 (100%)
R 181 of 579 ~ 31.26%
G 225 of 579 ~ 38.86%
B 173 of 579 ~ 29.88%
#B5E1AD color CMYK value is (20,0,23,12).
CMYK: (20,0,23,12) C20M0Y23K12 (20%,0%,23%,12%) (0.20/0.00/0.23/0.12)
B5 | E1 | AD | |
---|---|---|---|
RGB | 181 | 225 | 173 |
HSL | 111° | 46.43% | 78.04% |
HSB/HSV | 111° | 23.11% | 88.24% |
CMYK | 19.56% | 0.00% | 23.11% |
11.76% |
HEX | B5 | E1 | AD |
Decimal | 181 | 225 | 173 |
Binary | 10110101 | 11100001 | 10101101 |
Octal | 265 | 341 | 255 |
Examples of css and html codes for elements with #B5E1AD color. Also use rgb(181,225,173) instead hex code.
.myTextColor { color: #B5E1AD; }
<p style="color:#B5E1AD">This sample text font color is #B5E1AD.</p>
This text font color is #B5E1AD.
.myBgColor { background-color: #B5E1AD; }
<div style="background-color:#B5E1AD">Inner text</div>
This div background color is #B5E1AD.
.myBorderColor { border: 1px solid #B5E1AD; }
<div style="border:3px solid #B5E1AD">Div</div>
This div border color is #B5E1AD.
.myOpacity80 { color: #B5E1AD; opacity: 0.8; }
<p style="color:#B5E1AD;opacity:0.8;">80%</p>
Text with #B5E1AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5E1AD;}
<p style="text-shadow: 3px 3px 1px #B5E1AD">Text here.</p>
This text has shadow with #B5E1AD color.
.textShadow {text-shadow: 3px 3px 1px #B5E1AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5E1AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5E1AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5E1AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5E1AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5E1AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5E1AD; -webkit-box-shadow: 1px 1px 3px 2px #B5E1AD; box-shadow: 1px 1px 3px 2px #B5E1AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5E1AD; -webkit-box-shadow: 1px 1px 3px 2px #B5E1AD; box-shadow:1px 1px 3px 2px #B5E1AD;">
Div content here</div>
This text has color #B5E1AD on black background.
This text has color #B5E1AD on white background.
This text has black color on #B5E1AD background.
This text has white color on #B5E1AD background.