HEX: #BEDD96
RGB: (190,221,150)
#BEDD96 contains mainly red and green colors. Web safe color of #BEDD96 is #CCCC99 (or #CC9).
#BEDD96 color RGB value is (190,221,150).
RGB: (190,221,150) (75%,87%,59%)
R 190 of 255 = 75%
G 221 of 255 = 87%
B 150 of 255 = 59%
R + G + B ~ 74%. #BEDD96 is quite light color.
R + G + B =
190 + 221 + 150 = 561 (100%)
R 190 of 561 ~ 33.87%
G 221 of 561 ~ 39.39%
B 150 of 561 ~ 26.74%
#BEDD96 color CMYK value is (14,0,32,13).
CMYK: (14,0,32,13) C14M0Y32K13 (14%,0%,32%,13%) (0.14/0.00/0.32/0.13)
BE | DD | 96 | |
---|---|---|---|
RGB | 190 | 221 | 150 |
HSL | 86° | 51.08% | 72.75% |
HSB/HSV | 86° | 32.13% | 86.67% |
CMYK | 14.03% | 0.00% | 32.13% |
13.33% |
HEX | BE | DD | 96 |
Decimal | 190 | 221 | 150 |
Binary | 10111110 | 11011101 | 10010110 |
Octal | 276 | 335 | 226 |
Examples of css and html codes for elements with #BEDD96 color. Also use rgb(190,221,150) instead hex code.
.myTextColor { color: #BEDD96; }
<p style="color:#BEDD96">This sample text font color is #BEDD96.</p>
This text font color is #BEDD96.
.myBgColor { background-color: #BEDD96; }
<div style="background-color:#BEDD96">Inner text</div>
This div background color is #BEDD96.
.myBorderColor { border: 1px solid #BEDD96; }
<div style="border:3px solid #BEDD96">Div</div>
This div border color is #BEDD96.
.myOpacity80 { color: #BEDD96; opacity: 0.8; }
<p style="color:#BEDD96;opacity:0.8;">80%</p>
Text with #BEDD96 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEDD96;}
<p style="text-shadow: 3px 3px 1px #BEDD96">Text here.</p>
This text has shadow with #BEDD96 color.
.textShadow {text-shadow: 3px 3px 1px #BEDD96, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEDD96, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEDD96 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEDD96, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEDD96, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEDD96 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEDD96; -webkit-box-shadow: 1px 1px 3px 2px #BEDD96; box-shadow: 1px 1px 3px 2px #BEDD96; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEDD96; -webkit-box-shadow: 1px 1px 3px 2px #BEDD96; box-shadow:1px 1px 3px 2px #BEDD96;">
Div content here</div>
This text has color #BEDD96 on black background.
This text has color #BEDD96 on white background.
This text has black color on #BEDD96 background.
This text has white color on #BEDD96 background.