HEX: #B2BDDC
RGB: (178,189,220)
#B2BDDC contains red, green and blue colors in about the same proportion. Web safe color of #B2BDDC is #99CCCC (or #9CC).
#B2BDDC color RGB value is (178,189,220).
RGB: (178,189,220) (70%,74%,86%)
R 178 of 255 = 70%
G 189 of 255 = 74%
B 220 of 255 = 86%
R + G + B ~ 77%. #B2BDDC is quite light color.
R + G + B =
178 + 189 + 220 = 587 (100%)
R 178 of 587 ~ 30.32%
G 189 of 587 ~ 32.2%
B 220 of 587 ~ 37.48%
#B2BDDC color CMYK value is (19,14,0,14).
CMYK: (19,14,0,14) C19M14Y0K14 (19%,14%,0%,14%) (0.19/0.14/0.00/0.14)
B2 | BD | DC | |
---|---|---|---|
RGB | 178 | 189 | 220 |
HSL | 224° | 37.50% | 78.04% |
HSB/HSV | 224° | 19.09% | 86.27% |
CMYK | 19.09% | 14.09% | 0.00% |
13.73% |
HEX | B2 | BD | DC |
Decimal | 178 | 189 | 220 |
Binary | 10110010 | 10111101 | 11011100 |
Octal | 262 | 275 | 334 |
Examples of css and html codes for elements with #B2BDDC color. Also use rgb(178,189,220) instead hex code.
.myTextColor { color: #B2BDDC; }
<p style="color:#B2BDDC">This sample text font color is #B2BDDC.</p>
This text font color is #B2BDDC.
.myBgColor { background-color: #B2BDDC; }
<div style="background-color:#B2BDDC">Inner text</div>
This div background color is #B2BDDC.
.myBorderColor { border: 1px solid #B2BDDC; }
<div style="border:3px solid #B2BDDC">Div</div>
This div border color is #B2BDDC.
.myOpacity80 { color: #B2BDDC; opacity: 0.8; }
<p style="color:#B2BDDC;opacity:0.8;">80%</p>
Text with #B2BDDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B2BDDC;}
<p style="text-shadow: 3px 3px 1px #B2BDDC">Text here.</p>
This text has shadow with #B2BDDC color.
.textShadow {text-shadow: 3px 3px 1px #B2BDDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B2BDDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B2BDDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B2BDDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B2BDDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B2BDDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B2BDDC; -webkit-box-shadow: 1px 1px 3px 2px #B2BDDC; box-shadow: 1px 1px 3px 2px #B2BDDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B2BDDC; -webkit-box-shadow: 1px 1px 3px 2px #B2BDDC; box-shadow:1px 1px 3px 2px #B2BDDC;">
Div content here</div>
This text has color #B2BDDC on black background.
This text has color #B2BDDC on white background.
This text has black color on #B2BDDC background.
This text has white color on #B2BDDC background.