HEX: #B5EBD5
RGB: (181,235,213)
#B5EBD5 contains red, green and blue colors in about the same proportion. Web safe color of #B5EBD5 is #CCFFCC (or #CFC).
#B5EBD5 color RGB value is (181,235,213).
RGB: (181,235,213) (71%,92%,84%)
R 181 of 255 = 71%
G 235 of 255 = 92%
B 213 of 255 = 84%
R + G + B ~ 82%. #B5EBD5 is quite light color.
R + G + B =
181 + 235 + 213 = 629 (100%)
R 181 of 629 ~ 28.78%
G 235 of 629 ~ 37.36%
B 213 of 629 ~ 33.86%
#B5EBD5 color CMYK value is (23,0,9,8).
CMYK: (23,0,9,8) C23M0Y9K8 (23%,0%,9%,8%) (0.23/0.00/0.09/0.08)
B5 | EB | D5 | |
---|---|---|---|
RGB | 181 | 235 | 213 |
HSL | 156° | 57.45% | 81.57% |
HSB/HSV | 156° | 22.98% | 92.16% |
CMYK | 22.98% | 0.00% | 9.36% |
7.84% |
HEX | B5 | EB | D5 |
Decimal | 181 | 235 | 213 |
Binary | 10110101 | 11101011 | 11010101 |
Octal | 265 | 353 | 325 |
Examples of css and html codes for elements with #B5EBD5 color. Also use rgb(181,235,213) instead hex code.
.myTextColor { color: #B5EBD5; }
<p style="color:#B5EBD5">This sample text font color is #B5EBD5.</p>
This text font color is #B5EBD5.
.myBgColor { background-color: #B5EBD5; }
<div style="background-color:#B5EBD5">Inner text</div>
This div background color is #B5EBD5.
.myBorderColor { border: 1px solid #B5EBD5; }
<div style="border:3px solid #B5EBD5">Div</div>
This div border color is #B5EBD5.
.myOpacity80 { color: #B5EBD5; opacity: 0.8; }
<p style="color:#B5EBD5;opacity:0.8;">80%</p>
Text with #B5EBD5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5EBD5;}
<p style="text-shadow: 3px 3px 1px #B5EBD5">Text here.</p>
This text has shadow with #B5EBD5 color.
.textShadow {text-shadow: 3px 3px 1px #B5EBD5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5EBD5, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5EBD5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5EBD5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5EBD5, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5EBD5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5EBD5; -webkit-box-shadow: 1px 1px 3px 2px #B5EBD5; box-shadow: 1px 1px 3px 2px #B5EBD5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5EBD5; -webkit-box-shadow: 1px 1px 3px 2px #B5EBD5; box-shadow:1px 1px 3px 2px #B5EBD5;">
Div content here</div>
This text has color #B5EBD5 on black background.
This text has color #B5EBD5 on white background.
This text has black color on #B5EBD5 background.
This text has white color on #B5EBD5 background.