HEX: #B4E1DC
RGB: (180,225,220)
#B4E1DC contains red, green and blue colors in about the same proportion. Web safe color of #B4E1DC is #CCCCCC (or #CCC).
#B4E1DC color RGB value is (180,225,220).
RGB: (180,225,220) (71%,88%,86%)
R 180 of 255 = 71%
G 225 of 255 = 88%
B 220 of 255 = 86%
R + G + B ~ 82%. #B4E1DC is quite light color.
R + G + B =
180 + 225 + 220 = 625 (100%)
R 180 of 625 ~ 28.8%
G 225 of 625 ~ 36%
B 220 of 625 ~ 35.2%
#B4E1DC color CMYK value is (20,0,2,12).
CMYK: (20,0,2,12) C20M0Y2K12 (20%,0%,2%,12%) (0.20/0.00/0.02/0.12)
B4 | E1 | DC | |
---|---|---|---|
RGB | 180 | 225 | 220 |
HSL | 173° | 42.86% | 79.41% |
HSB/HSV | 173° | 20.00% | 88.24% |
CMYK | 20.00% | 0.00% | 2.22% |
11.76% |
HEX | B4 | E1 | DC |
Decimal | 180 | 225 | 220 |
Binary | 10110100 | 11100001 | 11011100 |
Octal | 264 | 341 | 334 |
Examples of css and html codes for elements with #B4E1DC color. Also use rgb(180,225,220) instead hex code.
.myTextColor { color: #B4E1DC; }
<p style="color:#B4E1DC">This sample text font color is #B4E1DC.</p>
This text font color is #B4E1DC.
.myBgColor { background-color: #B4E1DC; }
<div style="background-color:#B4E1DC">Inner text</div>
This div background color is #B4E1DC.
.myBorderColor { border: 1px solid #B4E1DC; }
<div style="border:3px solid #B4E1DC">Div</div>
This div border color is #B4E1DC.
.myOpacity80 { color: #B4E1DC; opacity: 0.8; }
<p style="color:#B4E1DC;opacity:0.8;">80%</p>
Text with #B4E1DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4E1DC;}
<p style="text-shadow: 3px 3px 1px #B4E1DC">Text here.</p>
This text has shadow with #B4E1DC color.
.textShadow {text-shadow: 3px 3px 1px #B4E1DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4E1DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4E1DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4E1DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4E1DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4E1DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4E1DC; -webkit-box-shadow: 1px 1px 3px 2px #B4E1DC; box-shadow: 1px 1px 3px 2px #B4E1DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4E1DC; -webkit-box-shadow: 1px 1px 3px 2px #B4E1DC; box-shadow:1px 1px 3px 2px #B4E1DC;">
Div content here</div>
This text has color #B4E1DC on black background.
This text has color #B4E1DC on white background.
This text has black color on #B4E1DC background.
This text has white color on #B4E1DC background.