HEX: #BEC496
RGB: (190,196,150)
#BEC496 contains red, green and blue colors in about the same proportion. Web safe color of #BEC496 is #CCCC99 (or #CC9).
#BEC496 color RGB value is (190,196,150).
RGB: (190,196,150) (75%,77%,59%)
R 190 of 255 = 75%
G 196 of 255 = 77%
B 150 of 255 = 59%
R + G + B ~ 70%. #BEC496 is quite light color.
R + G + B =
190 + 196 + 150 = 536 (100%)
R 190 of 536 ~ 35.45%
G 196 of 536 ~ 36.57%
B 150 of 536 ~ 27.99%
#BEC496 color CMYK value is (3,0,23,23).
CMYK: (3,0,23,23) C3M0Y23K23 (3%,0%,23%,23%) (0.03/0.00/0.23/0.23)
BE | C4 | 96 | |
---|---|---|---|
RGB | 190 | 196 | 150 |
HSL | 68° | 28.05% | 67.84% |
HSB/HSV | 68° | 23.47% | 76.86% |
CMYK | 3.06% | 0.00% | 23.47% |
23.14% |
HEX | BE | C4 | 96 |
Decimal | 190 | 196 | 150 |
Binary | 10111110 | 11000100 | 10010110 |
Octal | 276 | 304 | 226 |
Examples of css and html codes for elements with #BEC496 color. Also use rgb(190,196,150) instead hex code.
.myTextColor { color: #BEC496; }
<p style="color:#BEC496">This sample text font color is #BEC496.</p>
This text font color is #BEC496.
.myBgColor { background-color: #BEC496; }
<div style="background-color:#BEC496">Inner text</div>
This div background color is #BEC496.
.myBorderColor { border: 1px solid #BEC496; }
<div style="border:3px solid #BEC496">Div</div>
This div border color is #BEC496.
.myOpacity80 { color: #BEC496; opacity: 0.8; }
<p style="color:#BEC496;opacity:0.8;">80%</p>
Text with #BEC496 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEC496;}
<p style="text-shadow: 3px 3px 1px #BEC496">Text here.</p>
This text has shadow with #BEC496 color.
.textShadow {text-shadow: 3px 3px 1px #BEC496, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEC496, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEC496 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEC496, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEC496, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEC496 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEC496; -webkit-box-shadow: 1px 1px 3px 2px #BEC496; box-shadow: 1px 1px 3px 2px #BEC496; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEC496; -webkit-box-shadow: 1px 1px 3px 2px #BEC496; box-shadow:1px 1px 3px 2px #BEC496;">
Div content here</div>
This text has color #BEC496 on black background.
This text has color #BEC496 on white background.
This text has black color on #BEC496 background.
This text has white color on #BEC496 background.