HEX: #BEC589
RGB: (190,197,137)
#BEC589 contains mainly red and green colors. Web safe color of #BEC589 is #CCCC99 (or #CC9).
#BEC589 color RGB value is (190,197,137).
RGB: (190,197,137) (75%,77%,54%)
R 190 of 255 = 75%
G 197 of 255 = 77%
B 137 of 255 = 54%
R + G + B ~ 69%. #BEC589 is quite light color.
R + G + B =
190 + 197 + 137 = 524 (100%)
R 190 of 524 ~ 36.26%
G 197 of 524 ~ 37.6%
B 137 of 524 ~ 26.15%
#BEC589 color CMYK value is (4,0,30,23).
CMYK: (4,0,30,23) C4M0Y30K23 (4%,0%,30%,23%) (0.04/0.00/0.30/0.23)
BE | C5 | 89 | |
---|---|---|---|
RGB | 190 | 197 | 137 |
HSL | 67° | 34.09% | 65.49% |
HSB/HSV | 67° | 30.46% | 77.25% |
CMYK | 3.55% | 0.00% | 30.46% |
22.75% |
HEX | BE | C5 | 89 |
Decimal | 190 | 197 | 137 |
Binary | 10111110 | 11000101 | 10001001 |
Octal | 276 | 305 | 211 |
Examples of css and html codes for elements with #BEC589 color. Also use rgb(190,197,137) instead hex code.
.myTextColor { color: #BEC589; }
<p style="color:#BEC589">This sample text font color is #BEC589.</p>
This text font color is #BEC589.
.myBgColor { background-color: #BEC589; }
<div style="background-color:#BEC589">Inner text</div>
This div background color is #BEC589.
.myBorderColor { border: 1px solid #BEC589; }
<div style="border:3px solid #BEC589">Div</div>
This div border color is #BEC589.
.myOpacity80 { color: #BEC589; opacity: 0.8; }
<p style="color:#BEC589;opacity:0.8;">80%</p>
Text with #BEC589 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEC589;}
<p style="text-shadow: 3px 3px 1px #BEC589">Text here.</p>
This text has shadow with #BEC589 color.
.textShadow {text-shadow: 3px 3px 1px #BEC589, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEC589, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEC589 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEC589, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEC589, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEC589 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEC589; -webkit-box-shadow: 1px 1px 3px 2px #BEC589; box-shadow: 1px 1px 3px 2px #BEC589; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEC589; -webkit-box-shadow: 1px 1px 3px 2px #BEC589; box-shadow:1px 1px 3px 2px #BEC589;">
Div content here</div>
This text has color #BEC589 on black background.
This text has color #BEC589 on white background.
This text has black color on #BEC589 background.
This text has white color on #BEC589 background.