HEX: #BEC0DD
RGB: (190,192,221)
#BEC0DD contains red, green and blue colors in about the same proportion. Web safe color of #BEC0DD is #CCCCCC (or #CCC).
#BEC0DD color RGB value is (190,192,221).
RGB: (190,192,221) (75%,75%,87%)
R 190 of 255 = 75%
G 192 of 255 = 75%
B 221 of 255 = 87%
R + G + B ~ 79%. #BEC0DD is quite light color.
R + G + B =
190 + 192 + 221 = 603 (100%)
R 190 of 603 ~ 31.51%
G 192 of 603 ~ 31.84%
B 221 of 603 ~ 36.65%
#BEC0DD color CMYK value is (14,13,0,13).
CMYK: (14,13,0,13) C14M13Y0K13 (14%,13%,0%,13%) (0.14/0.13/0.00/0.13)
BE | C0 | DD | |
---|---|---|---|
RGB | 190 | 192 | 221 |
HSL | 236° | 31.31% | 80.59% |
HSB/HSV | 236° | 14.03% | 86.67% |
CMYK | 14.03% | 13.12% | 0.00% |
13.33% |
HEX | BE | C0 | DD |
Decimal | 190 | 192 | 221 |
Binary | 10111110 | 11000000 | 11011101 |
Octal | 276 | 300 | 335 |
Examples of css and html codes for elements with #BEC0DD color. Also use rgb(190,192,221) instead hex code.
.myTextColor { color: #BEC0DD; }
<p style="color:#BEC0DD">This sample text font color is #BEC0DD.</p>
This text font color is #BEC0DD.
.myBgColor { background-color: #BEC0DD; }
<div style="background-color:#BEC0DD">Inner text</div>
This div background color is #BEC0DD.
.myBorderColor { border: 1px solid #BEC0DD; }
<div style="border:3px solid #BEC0DD">Div</div>
This div border color is #BEC0DD.
.myOpacity80 { color: #BEC0DD; opacity: 0.8; }
<p style="color:#BEC0DD;opacity:0.8;">80%</p>
Text with #BEC0DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEC0DD;}
<p style="text-shadow: 3px 3px 1px #BEC0DD">Text here.</p>
This text has shadow with #BEC0DD color.
.textShadow {text-shadow: 3px 3px 1px #BEC0DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEC0DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEC0DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEC0DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEC0DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEC0DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEC0DD; -webkit-box-shadow: 1px 1px 3px 2px #BEC0DD; box-shadow: 1px 1px 3px 2px #BEC0DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEC0DD; -webkit-box-shadow: 1px 1px 3px 2px #BEC0DD; box-shadow:1px 1px 3px 2px #BEC0DD;">
Div content here</div>
This text has color #BEC0DD on black background.
This text has color #BEC0DD on white background.
This text has black color on #BEC0DD background.
This text has white color on #BEC0DD background.