HEX: #BEB5DE
RGB: (190,181,222)
#BEB5DE contains red, green and blue colors in about the same proportion. Web safe color of #BEB5DE is #CCCCCC (or #CCC).
#BEB5DE color RGB value is (190,181,222).
RGB: (190,181,222) (75%,71%,87%)
R 190 of 255 = 75%
G 181 of 255 = 71%
B 222 of 255 = 87%
R + G + B ~ 78%. #BEB5DE is quite light color.
R + G + B =
190 + 181 + 222 = 593 (100%)
R 190 of 593 ~ 32.04%
G 181 of 593 ~ 30.52%
B 222 of 593 ~ 37.44%
#BEB5DE color CMYK value is (14,18,0,13).
CMYK: (14,18,0,13) C14M18Y0K13 (14%,18%,0%,13%) (0.14/0.18/0.00/0.13)
BE | B5 | DE | |
---|---|---|---|
RGB | 190 | 181 | 222 |
HSL | 253° | 38.32% | 79.02% |
HSB/HSV | 253° | 18.47% | 87.06% |
CMYK | 14.41% | 18.47% | 0.00% |
12.94% |
HEX | BE | B5 | DE |
Decimal | 190 | 181 | 222 |
Binary | 10111110 | 10110101 | 11011110 |
Octal | 276 | 265 | 336 |
Examples of css and html codes for elements with #BEB5DE color. Also use rgb(190,181,222) instead hex code.
.myTextColor { color: #BEB5DE; }
<p style="color:#BEB5DE">This sample text font color is #BEB5DE.</p>
This text font color is #BEB5DE.
.myBgColor { background-color: #BEB5DE; }
<div style="background-color:#BEB5DE">Inner text</div>
This div background color is #BEB5DE.
.myBorderColor { border: 1px solid #BEB5DE; }
<div style="border:3px solid #BEB5DE">Div</div>
This div border color is #BEB5DE.
.myOpacity80 { color: #BEB5DE; opacity: 0.8; }
<p style="color:#BEB5DE;opacity:0.8;">80%</p>
Text with #BEB5DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEB5DE;}
<p style="text-shadow: 3px 3px 1px #BEB5DE">Text here.</p>
This text has shadow with #BEB5DE color.
.textShadow {text-shadow: 3px 3px 1px #BEB5DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEB5DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEB5DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEB5DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEB5DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEB5DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEB5DE; -webkit-box-shadow: 1px 1px 3px 2px #BEB5DE; box-shadow: 1px 1px 3px 2px #BEB5DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEB5DE; -webkit-box-shadow: 1px 1px 3px 2px #BEB5DE; box-shadow:1px 1px 3px 2px #BEB5DE;">
Div content here</div>
This text has color #BEB5DE on black background.
This text has color #BEB5DE on white background.
This text has black color on #BEB5DE background.
This text has white color on #BEB5DE background.