HEX: #B4F5DD
RGB: (180,245,221)
#B4F5DD contains mainly green and blue colors. Web safe color of #B4F5DD is #CCFFCC (or #CFC).
#B4F5DD color RGB value is (180,245,221).
RGB: (180,245,221) (71%,96%,87%)
R 180 of 255 = 71%
G 245 of 255 = 96%
B 221 of 255 = 87%
R + G + B ~ 85%. #B4F5DD is quite light color.
R + G + B =
180 + 245 + 221 = 646 (100%)
R 180 of 646 ~ 27.86%
G 245 of 646 ~ 37.93%
B 221 of 646 ~ 34.21%
#B4F5DD color CMYK value is (27,0,10,4).
CMYK: (27,0,10,4) C27M0Y10K4 (27%,0%,10%,4%) (0.27/0.00/0.10/0.04)
B4 | F5 | DD | |
---|---|---|---|
RGB | 180 | 245 | 221 |
HSL | 158° | 76.47% | 83.33% |
HSB/HSV | 158° | 26.53% | 96.08% |
CMYK | 26.53% | 0.00% | 9.80% |
3.92% |
HEX | B4 | F5 | DD |
Decimal | 180 | 245 | 221 |
Binary | 10110100 | 11110101 | 11011101 |
Octal | 264 | 365 | 335 |
Examples of css and html codes for elements with #B4F5DD color. Also use rgb(180,245,221) instead hex code.
.myTextColor { color: #B4F5DD; }
<p style="color:#B4F5DD">This sample text font color is #B4F5DD.</p>
This text font color is #B4F5DD.
.myBgColor { background-color: #B4F5DD; }
<div style="background-color:#B4F5DD">Inner text</div>
This div background color is #B4F5DD.
.myBorderColor { border: 1px solid #B4F5DD; }
<div style="border:3px solid #B4F5DD">Div</div>
This div border color is #B4F5DD.
.myOpacity80 { color: #B4F5DD; opacity: 0.8; }
<p style="color:#B4F5DD;opacity:0.8;">80%</p>
Text with #B4F5DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4F5DD;}
<p style="text-shadow: 3px 3px 1px #B4F5DD">Text here.</p>
This text has shadow with #B4F5DD color.
.textShadow {text-shadow: 3px 3px 1px #B4F5DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4F5DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4F5DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4F5DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4F5DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4F5DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4F5DD; -webkit-box-shadow: 1px 1px 3px 2px #B4F5DD; box-shadow: 1px 1px 3px 2px #B4F5DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4F5DD; -webkit-box-shadow: 1px 1px 3px 2px #B4F5DD; box-shadow:1px 1px 3px 2px #B4F5DD;">
Div content here</div>
This text has color #B4F5DD on black background.
This text has color #B4F5DD on white background.
This text has black color on #B4F5DD background.
This text has white color on #B4F5DD background.