HEX: #B5BEDB
RGB: (181,190,219)
#B5BEDB contains red, green and blue colors in about the same proportion. Web safe color of #B5BEDB is #CCCCCC (or #CCC).
#B5BEDB color RGB value is (181,190,219).
RGB: (181,190,219) (71%,75%,86%)
R 181 of 255 = 71%
G 190 of 255 = 75%
B 219 of 255 = 86%
R + G + B ~ 77%. #B5BEDB is quite light color.
R + G + B =
181 + 190 + 219 = 590 (100%)
R 181 of 590 ~ 30.68%
G 190 of 590 ~ 32.2%
B 219 of 590 ~ 37.12%
#B5BEDB color CMYK value is (17,13,0,14).
CMYK: (17,13,0,14) C17M13Y0K14 (17%,13%,0%,14%) (0.17/0.13/0.00/0.14)
B5 | BE | DB | |
---|---|---|---|
RGB | 181 | 190 | 219 |
HSL | 226° | 34.55% | 78.43% |
HSB/HSV | 226° | 17.35% | 85.88% |
CMYK | 17.35% | 13.24% | 0.00% |
14.12% |
HEX | B5 | BE | DB |
Decimal | 181 | 190 | 219 |
Binary | 10110101 | 10111110 | 11011011 |
Octal | 265 | 276 | 333 |
Examples of css and html codes for elements with #B5BEDB color. Also use rgb(181,190,219) instead hex code.
.myTextColor { color: #B5BEDB; }
<p style="color:#B5BEDB">This sample text font color is #B5BEDB.</p>
This text font color is #B5BEDB.
.myBgColor { background-color: #B5BEDB; }
<div style="background-color:#B5BEDB">Inner text</div>
This div background color is #B5BEDB.
.myBorderColor { border: 1px solid #B5BEDB; }
<div style="border:3px solid #B5BEDB">Div</div>
This div border color is #B5BEDB.
.myOpacity80 { color: #B5BEDB; opacity: 0.8; }
<p style="color:#B5BEDB;opacity:0.8;">80%</p>
Text with #B5BEDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5BEDB;}
<p style="text-shadow: 3px 3px 1px #B5BEDB">Text here.</p>
This text has shadow with #B5BEDB color.
.textShadow {text-shadow: 3px 3px 1px #B5BEDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5BEDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5BEDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5BEDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5BEDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5BEDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5BEDB; -webkit-box-shadow: 1px 1px 3px 2px #B5BEDB; box-shadow: 1px 1px 3px 2px #B5BEDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5BEDB; -webkit-box-shadow: 1px 1px 3px 2px #B5BEDB; box-shadow:1px 1px 3px 2px #B5BEDB;">
Div content here</div>
This text has color #B5BEDB on black background.
This text has color #B5BEDB on white background.
This text has black color on #B5BEDB background.
This text has white color on #B5BEDB background.