HEX: #BED590
RGB: (190,213,144)
#BED590 contains mainly red and green colors. Web safe color of #BED590 is #CCCC99 (or #CC9).
#BED590 color RGB value is (190,213,144).
RGB: (190,213,144) (75%,84%,56%)
R 190 of 255 = 75%
G 213 of 255 = 84%
B 144 of 255 = 56%
R + G + B ~ 72%. #BED590 is quite light color.
R + G + B =
190 + 213 + 144 = 547 (100%)
R 190 of 547 ~ 34.73%
G 213 of 547 ~ 38.94%
B 144 of 547 ~ 26.33%
#BED590 color CMYK value is (11,0,32,16).
CMYK: (11,0,32,16) C11M0Y32K16 (11%,0%,32%,16%) (0.11/0.00/0.32/0.16)
BE | D5 | 90 | |
---|---|---|---|
RGB | 190 | 213 | 144 |
HSL | 80° | 45.10% | 70.00% |
HSB/HSV | 80° | 32.39% | 83.53% |
CMYK | 10.80% | 0.00% | 32.39% |
16.47% |
HEX | BE | D5 | 90 |
Decimal | 190 | 213 | 144 |
Binary | 10111110 | 11010101 | 10010000 |
Octal | 276 | 325 | 220 |
Examples of css and html codes for elements with #BED590 color. Also use rgb(190,213,144) instead hex code.
.myTextColor { color: #BED590; }
<p style="color:#BED590">This sample text font color is #BED590.</p>
This text font color is #BED590.
.myBgColor { background-color: #BED590; }
<div style="background-color:#BED590">Inner text</div>
This div background color is #BED590.
.myBorderColor { border: 1px solid #BED590; }
<div style="border:3px solid #BED590">Div</div>
This div border color is #BED590.
.myOpacity80 { color: #BED590; opacity: 0.8; }
<p style="color:#BED590;opacity:0.8;">80%</p>
Text with #BED590 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BED590;}
<p style="text-shadow: 3px 3px 1px #BED590">Text here.</p>
This text has shadow with #BED590 color.
.textShadow {text-shadow: 3px 3px 1px #BED590, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BED590, 5px 5px 20px red">Text here.</p>
This text has shadow with #BED590 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BED590, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BED590, Direction=45, Strength=4)">Text</p>
This text has shadow with #BED590 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BED590; -webkit-box-shadow: 1px 1px 3px 2px #BED590; box-shadow: 1px 1px 3px 2px #BED590; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BED590; -webkit-box-shadow: 1px 1px 3px 2px #BED590; box-shadow:1px 1px 3px 2px #BED590;">
Div content here</div>
This text has color #BED590 on black background.
This text has color #BED590 on white background.
This text has black color on #BED590 background.
This text has white color on #BED590 background.