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