HEX: #BEB5DD
RGB: (190,181,221)
#BEB5DD contains red, green and blue colors in about the same proportion. Web safe color of #BEB5DD is #CCCCCC (or #CCC).
#BEB5DD color RGB value is (190,181,221).
RGB: (190,181,221) (75%,71%,87%)
R 190 of 255 = 75%
G 181 of 255 = 71%
B 221 of 255 = 87%
R + G + B ~ 78%. #BEB5DD is quite light color.
R + G + B =
190 + 181 + 221 = 592 (100%)
R 190 of 592 ~ 32.09%
G 181 of 592 ~ 30.57%
B 221 of 592 ~ 37.33%
#BEB5DD 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 | DD | |
---|---|---|---|
RGB | 190 | 181 | 221 |
HSL | 254° | 37.04% | 78.82% |
HSB/HSV | 254° | 18.10% | 86.67% |
CMYK | 14.03% | 18.10% | 0.00% |
13.33% |
HEX | BE | B5 | DD |
Decimal | 190 | 181 | 221 |
Binary | 10111110 | 10110101 | 11011101 |
Octal | 276 | 265 | 335 |
Examples of css and html codes for elements with #BEB5DD color. Also use rgb(190,181,221) instead hex code.
.myTextColor { color: #BEB5DD; }
<p style="color:#BEB5DD">This sample text font color is #BEB5DD.</p>
This text font color is #BEB5DD.
.myBgColor { background-color: #BEB5DD; }
<div style="background-color:#BEB5DD">Inner text</div>
This div background color is #BEB5DD.
.myBorderColor { border: 1px solid #BEB5DD; }
<div style="border:3px solid #BEB5DD">Div</div>
This div border color is #BEB5DD.
.myOpacity80 { color: #BEB5DD; opacity: 0.8; }
<p style="color:#BEB5DD;opacity:0.8;">80%</p>
Text with #BEB5DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEB5DD;}
<p style="text-shadow: 3px 3px 1px #BEB5DD">Text here.</p>
This text has shadow with #BEB5DD color.
.textShadow {text-shadow: 3px 3px 1px #BEB5DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEB5DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEB5DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEB5DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEB5DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEB5DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEB5DD; -webkit-box-shadow: 1px 1px 3px 2px #BEB5DD; box-shadow: 1px 1px 3px 2px #BEB5DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEB5DD; -webkit-box-shadow: 1px 1px 3px 2px #BEB5DD; box-shadow:1px 1px 3px 2px #BEB5DD;">
Div content here</div>
This text has color #BEB5DD on black background.
This text has color #BEB5DD on white background.
This text has black color on #BEB5DD background.
This text has white color on #BEB5DD background.