HEX: #B4EDE6
RGB: (180,237,230)
#B4EDE6 contains red, green and blue colors in about the same proportion. Web safe color of #B4EDE6 is #CCFFCC (or #CFC).
#B4EDE6 color RGB value is (180,237,230).
RGB: (180,237,230) (71%,93%,90%)
R 180 of 255 = 71%
G 237 of 255 = 93%
B 230 of 255 = 90%
R + G + B ~ 85%. #B4EDE6 is quite light color.
R + G + B =
180 + 237 + 230 = 647 (100%)
R 180 of 647 ~ 27.82%
G 237 of 647 ~ 36.63%
B 230 of 647 ~ 35.55%
#B4EDE6 color CMYK value is (24,0,3,7).
CMYK: (24,0,3,7) C24M0Y3K7 (24%,0%,3%,7%) (0.24/0.00/0.03/0.07)
B4 | ED | E6 | |
---|---|---|---|
RGB | 180 | 237 | 230 |
HSL | 173° | 61.29% | 81.76% |
HSB/HSV | 173° | 24.05% | 92.94% |
CMYK | 24.05% | 0.00% | 2.95% |
7.06% |
HEX | B4 | ED | E6 |
Decimal | 180 | 237 | 230 |
Binary | 10110100 | 11101101 | 11100110 |
Octal | 264 | 355 | 346 |
Examples of css and html codes for elements with #B4EDE6 color. Also use rgb(180,237,230) instead hex code.
.myTextColor { color: #B4EDE6; }
<p style="color:#B4EDE6">This sample text font color is #B4EDE6.</p>
This text font color is #B4EDE6.
.myBgColor { background-color: #B4EDE6; }
<div style="background-color:#B4EDE6">Inner text</div>
This div background color is #B4EDE6.
.myBorderColor { border: 1px solid #B4EDE6; }
<div style="border:3px solid #B4EDE6">Div</div>
This div border color is #B4EDE6.
.myOpacity80 { color: #B4EDE6; opacity: 0.8; }
<p style="color:#B4EDE6;opacity:0.8;">80%</p>
Text with #B4EDE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4EDE6;}
<p style="text-shadow: 3px 3px 1px #B4EDE6">Text here.</p>
This text has shadow with #B4EDE6 color.
.textShadow {text-shadow: 3px 3px 1px #B4EDE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4EDE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4EDE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4EDE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4EDE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4EDE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4EDE6; -webkit-box-shadow: 1px 1px 3px 2px #B4EDE6; box-shadow: 1px 1px 3px 2px #B4EDE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4EDE6; -webkit-box-shadow: 1px 1px 3px 2px #B4EDE6; box-shadow:1px 1px 3px 2px #B4EDE6;">
Div content here</div>
This text has color #B4EDE6 on black background.
This text has color #B4EDE6 on white background.
This text has black color on #B4EDE6 background.
This text has white color on #B4EDE6 background.