HEX: #B5BBEE
RGB: (181,187,238)
#B5BBEE contains red, green and blue colors in about the same proportion. Web safe color of #B5BBEE is #CCCCFF (or #CCF).
#B5BBEE color RGB value is (181,187,238).
RGB: (181,187,238) (71%,73%,93%)
R 181 of 255 = 71%
G 187 of 255 = 73%
B 238 of 255 = 93%
R + G + B ~ 79%. #B5BBEE is quite light color.
R + G + B =
181 + 187 + 238 = 606 (100%)
R 181 of 606 ~ 29.87%
G 187 of 606 ~ 30.86%
B 238 of 606 ~ 39.27%
#B5BBEE color CMYK value is (24,21,0,7).
CMYK: (24,21,0,7) C24M21Y0K7 (24%,21%,0%,7%) (0.24/0.21/0.00/0.07)
B5 | BB | EE | |
---|---|---|---|
RGB | 181 | 187 | 238 |
HSL | 234° | 62.64% | 82.16% |
HSB/HSV | 234° | 23.95% | 93.33% |
CMYK | 23.95% | 21.43% | 0.00% |
6.67% |
HEX | B5 | BB | EE |
Decimal | 181 | 187 | 238 |
Binary | 10110101 | 10111011 | 11101110 |
Octal | 265 | 273 | 356 |
Examples of css and html codes for elements with #B5BBEE color. Also use rgb(181,187,238) instead hex code.
.myTextColor { color: #B5BBEE; }
<p style="color:#B5BBEE">This sample text font color is #B5BBEE.</p>
This text font color is #B5BBEE.
.myBgColor { background-color: #B5BBEE; }
<div style="background-color:#B5BBEE">Inner text</div>
This div background color is #B5BBEE.
.myBorderColor { border: 1px solid #B5BBEE; }
<div style="border:3px solid #B5BBEE">Div</div>
This div border color is #B5BBEE.
.myOpacity80 { color: #B5BBEE; opacity: 0.8; }
<p style="color:#B5BBEE;opacity:0.8;">80%</p>
Text with #B5BBEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5BBEE;}
<p style="text-shadow: 3px 3px 1px #B5BBEE">Text here.</p>
This text has shadow with #B5BBEE color.
.textShadow {text-shadow: 3px 3px 1px #B5BBEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5BBEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5BBEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5BBEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5BBEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5BBEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5BBEE; -webkit-box-shadow: 1px 1px 3px 2px #B5BBEE; box-shadow: 1px 1px 3px 2px #B5BBEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5BBEE; -webkit-box-shadow: 1px 1px 3px 2px #B5BBEE; box-shadow:1px 1px 3px 2px #B5BBEE;">
Div content here</div>
This text has color #B5BBEE on black background.
This text has color #B5BBEE on white background.
This text has black color on #B5BBEE background.
This text has white color on #B5BBEE background.