HEX: #B4E3DD
RGB: (180,227,221)
#B4E3DD contains red, green and blue colors in about the same proportion. Web safe color of #B4E3DD is #CCCCCC (or #CCC).
#B4E3DD color RGB value is (180,227,221).
RGB: (180,227,221) (71%,89%,87%)
R 180 of 255 = 71%
G 227 of 255 = 89%
B 221 of 255 = 87%
R + G + B ~ 82%. #B4E3DD is quite light color.
R + G + B =
180 + 227 + 221 = 628 (100%)
R 180 of 628 ~ 28.66%
G 227 of 628 ~ 36.15%
B 221 of 628 ~ 35.19%
#B4E3DD color CMYK value is (21,0,3,11).
CMYK: (21,0,3,11) C21M0Y3K11 (21%,0%,3%,11%) (0.21/0.00/0.03/0.11)
B4 | E3 | DD | |
---|---|---|---|
RGB | 180 | 227 | 221 |
HSL | 172° | 45.63% | 79.80% |
HSB/HSV | 172° | 20.70% | 89.02% |
CMYK | 20.70% | 0.00% | 2.64% |
10.98% |
HEX | B4 | E3 | DD |
Decimal | 180 | 227 | 221 |
Binary | 10110100 | 11100011 | 11011101 |
Octal | 264 | 343 | 335 |
Examples of css and html codes for elements with #B4E3DD color. Also use rgb(180,227,221) instead hex code.
.myTextColor { color: #B4E3DD; }
<p style="color:#B4E3DD">This sample text font color is #B4E3DD.</p>
This text font color is #B4E3DD.
.myBgColor { background-color: #B4E3DD; }
<div style="background-color:#B4E3DD">Inner text</div>
This div background color is #B4E3DD.
.myBorderColor { border: 1px solid #B4E3DD; }
<div style="border:3px solid #B4E3DD">Div</div>
This div border color is #B4E3DD.
.myOpacity80 { color: #B4E3DD; opacity: 0.8; }
<p style="color:#B4E3DD;opacity:0.8;">80%</p>
Text with #B4E3DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4E3DD;}
<p style="text-shadow: 3px 3px 1px #B4E3DD">Text here.</p>
This text has shadow with #B4E3DD color.
.textShadow {text-shadow: 3px 3px 1px #B4E3DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4E3DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4E3DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4E3DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4E3DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4E3DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4E3DD; -webkit-box-shadow: 1px 1px 3px 2px #B4E3DD; box-shadow: 1px 1px 3px 2px #B4E3DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4E3DD; -webkit-box-shadow: 1px 1px 3px 2px #B4E3DD; box-shadow:1px 1px 3px 2px #B4E3DD;">
Div content here</div>
This text has color #B4E3DD on black background.
This text has color #B4E3DD on white background.
This text has black color on #B4E3DD background.
This text has white color on #B4E3DD background.