HEX: #B0B5DC
RGB: (176,181,220)
#B0B5DC contains red, green and blue colors in about the same proportion. Web safe color of #B0B5DC is #99CCCC (or #9CC).
#B0B5DC color RGB value is (176,181,220).
RGB: (176,181,220) (69%,71%,86%)
R 176 of 255 = 69%
G 181 of 255 = 71%
B 220 of 255 = 86%
R + G + B ~ 75%. #B0B5DC is quite light color.
R + G + B =
176 + 181 + 220 = 577 (100%)
R 176 of 577 ~ 30.5%
G 181 of 577 ~ 31.37%
B 220 of 577 ~ 38.13%
#B0B5DC color CMYK value is (20,18,0,14).
CMYK: (20,18,0,14) C20M18Y0K14 (20%,18%,0%,14%) (0.20/0.18/0.00/0.14)
B0 | B5 | DC | |
---|---|---|---|
RGB | 176 | 181 | 220 |
HSL | 233° | 38.60% | 77.65% |
HSB/HSV | 233° | 20.00% | 86.27% |
CMYK | 20.00% | 17.73% | 0.00% |
13.73% |
HEX | B0 | B5 | DC |
Decimal | 176 | 181 | 220 |
Binary | 10110000 | 10110101 | 11011100 |
Octal | 260 | 265 | 334 |
Examples of css and html codes for elements with #B0B5DC color. Also use rgb(176,181,220) instead hex code.
.myTextColor { color: #B0B5DC; }
<p style="color:#B0B5DC">This sample text font color is #B0B5DC.</p>
This text font color is #B0B5DC.
.myBgColor { background-color: #B0B5DC; }
<div style="background-color:#B0B5DC">Inner text</div>
This div background color is #B0B5DC.
.myBorderColor { border: 1px solid #B0B5DC; }
<div style="border:3px solid #B0B5DC">Div</div>
This div border color is #B0B5DC.
.myOpacity80 { color: #B0B5DC; opacity: 0.8; }
<p style="color:#B0B5DC;opacity:0.8;">80%</p>
Text with #B0B5DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0B5DC;}
<p style="text-shadow: 3px 3px 1px #B0B5DC">Text here.</p>
This text has shadow with #B0B5DC color.
.textShadow {text-shadow: 3px 3px 1px #B0B5DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0B5DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0B5DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0B5DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0B5DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0B5DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0B5DC; -webkit-box-shadow: 1px 1px 3px 2px #B0B5DC; box-shadow: 1px 1px 3px 2px #B0B5DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0B5DC; -webkit-box-shadow: 1px 1px 3px 2px #B0B5DC; box-shadow:1px 1px 3px 2px #B0B5DC;">
Div content here</div>
This text has color #B0B5DC on black background.
This text has color #B0B5DC on white background.
This text has black color on #B0B5DC background.
This text has white color on #B0B5DC background.