HEX: #B4DCCB
RGB: (180,220,203)
#B4DCCB contains red, green and blue colors in about the same proportion. Web safe color of #B4DCCB is #CCCCCC (or #CCC).
#B4DCCB color RGB value is (180,220,203).
RGB: (180,220,203) (71%,86%,80%)
R 180 of 255 = 71%
G 220 of 255 = 86%
B 203 of 255 = 80%
R + G + B ~ 79%. #B4DCCB is quite light color.
R + G + B =
180 + 220 + 203 = 603 (100%)
R 180 of 603 ~ 29.85%
G 220 of 603 ~ 36.48%
B 203 of 603 ~ 33.67%
#B4DCCB color CMYK value is (18,0,8,14).
CMYK: (18,0,8,14) C18M0Y8K14 (18%,0%,8%,14%) (0.18/0.00/0.08/0.14)
B4 | DC | CB | |
---|---|---|---|
RGB | 180 | 220 | 203 |
HSL | 155° | 36.36% | 78.43% |
HSB/HSV | 155° | 18.18% | 86.27% |
CMYK | 18.18% | 0.00% | 7.73% |
13.73% |
HEX | B4 | DC | CB |
Decimal | 180 | 220 | 203 |
Binary | 10110100 | 11011100 | 11001011 |
Octal | 264 | 334 | 313 |
Examples of css and html codes for elements with #B4DCCB color. Also use rgb(180,220,203) instead hex code.
.myTextColor { color: #B4DCCB; }
<p style="color:#B4DCCB">This sample text font color is #B4DCCB.</p>
This text font color is #B4DCCB.
.myBgColor { background-color: #B4DCCB; }
<div style="background-color:#B4DCCB">Inner text</div>
This div background color is #B4DCCB.
.myBorderColor { border: 1px solid #B4DCCB; }
<div style="border:3px solid #B4DCCB">Div</div>
This div border color is #B4DCCB.
.myOpacity80 { color: #B4DCCB; opacity: 0.8; }
<p style="color:#B4DCCB;opacity:0.8;">80%</p>
Text with #B4DCCB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4DCCB;}
<p style="text-shadow: 3px 3px 1px #B4DCCB">Text here.</p>
This text has shadow with #B4DCCB color.
.textShadow {text-shadow: 3px 3px 1px #B4DCCB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4DCCB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4DCCB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4DCCB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4DCCB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4DCCB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4DCCB; -webkit-box-shadow: 1px 1px 3px 2px #B4DCCB; box-shadow: 1px 1px 3px 2px #B4DCCB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4DCCB; -webkit-box-shadow: 1px 1px 3px 2px #B4DCCB; box-shadow:1px 1px 3px 2px #B4DCCB;">
Div content here</div>
This text has color #B4DCCB on black background.
This text has color #B4DCCB on white background.
This text has black color on #B4DCCB background.
This text has white color on #B4DCCB background.