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