HEX: #BEC595
RGB: (190,197,149)
#BEC595 contains red, green and blue colors in about the same proportion. Web safe color of #BEC595 is #CCCC99 (or #CC9).
#BEC595 color RGB value is (190,197,149).
RGB: (190,197,149) (75%,77%,58%)
R 190 of 255 = 75%
G 197 of 255 = 77%
B 149 of 255 = 58%
R + G + B ~ 70%. #BEC595 is quite light color.
R + G + B =
190 + 197 + 149 = 536 (100%)
R 190 of 536 ~ 35.45%
G 197 of 536 ~ 36.75%
B 149 of 536 ~ 27.8%
#BEC595 color CMYK value is (4,0,24,23).
CMYK: (4,0,24,23) C4M0Y24K23 (4%,0%,24%,23%) (0.04/0.00/0.24/0.23)
BE | C5 | 95 | |
---|---|---|---|
RGB | 190 | 197 | 149 |
HSL | 69° | 29.27% | 67.84% |
HSB/HSV | 69° | 24.37% | 77.25% |
CMYK | 3.55% | 0.00% | 24.37% |
22.75% |
HEX | BE | C5 | 95 |
Decimal | 190 | 197 | 149 |
Binary | 10111110 | 11000101 | 10010101 |
Octal | 276 | 305 | 225 |
Examples of css and html codes for elements with #BEC595 color. Also use rgb(190,197,149) instead hex code.
.myTextColor { color: #BEC595; }
<p style="color:#BEC595">This sample text font color is #BEC595.</p>
This text font color is #BEC595.
.myBgColor { background-color: #BEC595; }
<div style="background-color:#BEC595">Inner text</div>
This div background color is #BEC595.
.myBorderColor { border: 1px solid #BEC595; }
<div style="border:3px solid #BEC595">Div</div>
This div border color is #BEC595.
.myOpacity80 { color: #BEC595; opacity: 0.8; }
<p style="color:#BEC595;opacity:0.8;">80%</p>
Text with #BEC595 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEC595;}
<p style="text-shadow: 3px 3px 1px #BEC595">Text here.</p>
This text has shadow with #BEC595 color.
.textShadow {text-shadow: 3px 3px 1px #BEC595, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEC595, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEC595 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEC595, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEC595, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEC595 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEC595; -webkit-box-shadow: 1px 1px 3px 2px #BEC595; box-shadow: 1px 1px 3px 2px #BEC595; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEC595; -webkit-box-shadow: 1px 1px 3px 2px #BEC595; box-shadow:1px 1px 3px 2px #BEC595;">
Div content here</div>
This text has color #BEC595 on black background.
This text has color #BEC595 on white background.
This text has black color on #BEC595 background.
This text has white color on #BEC595 background.