HEX: #BE80BC
RGB: (190,128,188)
#BE80BC contains mainly red and blue colors. Web safe color of #BE80BC is #CC66CC (or #C6C).
#BE80BC color RGB value is (190,128,188).
RGB: (190,128,188) (75%,50%,74%)
R 190 of 255 = 75%
G 128 of 255 = 50%
B 188 of 255 = 74%
R + G + B ~ 66%. #BE80BC is quite light color.
R + G + B =
190 + 128 + 188 = 506 (100%)
R 190 of 506 ~ 37.55%
G 128 of 506 ~ 25.3%
B 188 of 506 ~ 37.15%
#BE80BC color CMYK value is (0,33,1,25).
CMYK: (0,33,1,25) C0M33Y1K25 (0%,33%,1%,25%) (0.00/0.33/0.01/0.25)
BE | 80 | BC | |
---|---|---|---|
RGB | 190 | 128 | 188 |
HSL | 302° | 32.29% | 62.35% |
HSB/HSV | 302° | 32.63% | 74.51% |
CMYK | 0.00% | 32.63% | 1.05% |
25.49% |
HEX | BE | 80 | BC |
Decimal | 190 | 128 | 188 |
Binary | 10111110 | 10000000 | 10111100 |
Octal | 276 | 200 | 274 |
Examples of css and html codes for elements with #BE80BC color. Also use rgb(190,128,188) instead hex code.
.myTextColor { color: #BE80BC; }
<p style="color:#BE80BC">This sample text font color is #BE80BC.</p>
This text font color is #BE80BC.
.myBgColor { background-color: #BE80BC; }
<div style="background-color:#BE80BC">Inner text</div>
This div background color is #BE80BC.
.myBorderColor { border: 1px solid #BE80BC; }
<div style="border:3px solid #BE80BC">Div</div>
This div border color is #BE80BC.
.myOpacity80 { color: #BE80BC; opacity: 0.8; }
<p style="color:#BE80BC;opacity:0.8;">80%</p>
Text with #BE80BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE80BC;}
<p style="text-shadow: 3px 3px 1px #BE80BC">Text here.</p>
This text has shadow with #BE80BC color.
.textShadow {text-shadow: 3px 3px 1px #BE80BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE80BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE80BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE80BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE80BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE80BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE80BC; -webkit-box-shadow: 1px 1px 3px 2px #BE80BC; box-shadow: 1px 1px 3px 2px #BE80BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE80BC; -webkit-box-shadow: 1px 1px 3px 2px #BE80BC; box-shadow:1px 1px 3px 2px #BE80BC;">
Div content here</div>
This text has color #BE80BC on black background.
This text has color #BE80BC on white background.
This text has black color on #BE80BC background.
This text has white color on #BE80BC background.