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