HEX: #B4E9DF
RGB: (180,233,223)
#B4E9DF contains red, green and blue colors in about the same proportion. Web safe color of #B4E9DF is #CCFFCC (or #CFC).
#B4E9DF color RGB value is (180,233,223).
RGB: (180,233,223) (71%,91%,87%)
R 180 of 255 = 71%
G 233 of 255 = 91%
B 223 of 255 = 87%
R + G + B ~ 83%. #B4E9DF is quite light color.
R + G + B =
180 + 233 + 223 = 636 (100%)
R 180 of 636 ~ 28.3%
G 233 of 636 ~ 36.64%
B 223 of 636 ~ 35.06%
#B4E9DF color CMYK value is (23,0,4,9).
CMYK: (23,0,4,9) C23M0Y4K9 (23%,0%,4%,9%) (0.23/0.00/0.04/0.09)
B4 | E9 | DF | |
---|---|---|---|
RGB | 180 | 233 | 223 |
HSL | 169° | 54.64% | 80.98% |
HSB/HSV | 169° | 22.75% | 91.37% |
CMYK | 22.75% | 0.00% | 4.29% |
8.63% |
HEX | B4 | E9 | DF |
Decimal | 180 | 233 | 223 |
Binary | 10110100 | 11101001 | 11011111 |
Octal | 264 | 351 | 337 |
Examples of css and html codes for elements with #B4E9DF color. Also use rgb(180,233,223) instead hex code.
.myTextColor { color: #B4E9DF; }
<p style="color:#B4E9DF">This sample text font color is #B4E9DF.</p>
This text font color is #B4E9DF.
.myBgColor { background-color: #B4E9DF; }
<div style="background-color:#B4E9DF">Inner text</div>
This div background color is #B4E9DF.
.myBorderColor { border: 1px solid #B4E9DF; }
<div style="border:3px solid #B4E9DF">Div</div>
This div border color is #B4E9DF.
.myOpacity80 { color: #B4E9DF; opacity: 0.8; }
<p style="color:#B4E9DF;opacity:0.8;">80%</p>
Text with #B4E9DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4E9DF;}
<p style="text-shadow: 3px 3px 1px #B4E9DF">Text here.</p>
This text has shadow with #B4E9DF color.
.textShadow {text-shadow: 3px 3px 1px #B4E9DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4E9DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4E9DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4E9DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4E9DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4E9DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4E9DF; -webkit-box-shadow: 1px 1px 3px 2px #B4E9DF; box-shadow: 1px 1px 3px 2px #B4E9DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4E9DF; -webkit-box-shadow: 1px 1px 3px 2px #B4E9DF; box-shadow:1px 1px 3px 2px #B4E9DF;">
Div content here</div>
This text has color #B4E9DF on black background.
This text has color #B4E9DF on white background.
This text has black color on #B4E9DF background.
This text has white color on #B4E9DF background.