HEX: #B4D59B
RGB: (180,213,155)
#B4D59B contains red, green and blue colors in about the same proportion. Web safe color of #B4D59B is #CCCC99 (or #CC9).
#B4D59B color RGB value is (180,213,155).
RGB: (180,213,155) (71%,84%,61%)
R 180 of 255 = 71%
G 213 of 255 = 84%
B 155 of 255 = 61%
R + G + B ~ 72%. #B4D59B is quite light color.
R + G + B =
180 + 213 + 155 = 548 (100%)
R 180 of 548 ~ 32.85%
G 213 of 548 ~ 38.87%
B 155 of 548 ~ 28.28%
#B4D59B color CMYK value is (15,0,27,16).
CMYK: (15,0,27,16) C15M0Y27K16 (15%,0%,27%,16%) (0.15/0.00/0.27/0.16)
B4 | D5 | 9B | |
---|---|---|---|
RGB | 180 | 213 | 155 |
HSL | 94° | 40.85% | 72.16% |
HSB/HSV | 94° | 27.23% | 83.53% |
CMYK | 15.49% | 0.00% | 27.23% |
16.47% |
HEX | B4 | D5 | 9B |
Decimal | 180 | 213 | 155 |
Binary | 10110100 | 11010101 | 10011011 |
Octal | 264 | 325 | 233 |
Examples of css and html codes for elements with #B4D59B color. Also use rgb(180,213,155) instead hex code.
.myTextColor { color: #B4D59B; }
<p style="color:#B4D59B">This sample text font color is #B4D59B.</p>
This text font color is #B4D59B.
.myBgColor { background-color: #B4D59B; }
<div style="background-color:#B4D59B">Inner text</div>
This div background color is #B4D59B.
.myBorderColor { border: 1px solid #B4D59B; }
<div style="border:3px solid #B4D59B">Div</div>
This div border color is #B4D59B.
.myOpacity80 { color: #B4D59B; opacity: 0.8; }
<p style="color:#B4D59B;opacity:0.8;">80%</p>
Text with #B4D59B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4D59B;}
<p style="text-shadow: 3px 3px 1px #B4D59B">Text here.</p>
This text has shadow with #B4D59B color.
.textShadow {text-shadow: 3px 3px 1px #B4D59B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4D59B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4D59B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4D59B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4D59B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4D59B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4D59B; -webkit-box-shadow: 1px 1px 3px 2px #B4D59B; box-shadow: 1px 1px 3px 2px #B4D59B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4D59B; -webkit-box-shadow: 1px 1px 3px 2px #B4D59B; box-shadow:1px 1px 3px 2px #B4D59B;">
Div content here</div>
This text has color #B4D59B on black background.
This text has color #B4D59B on white background.
This text has black color on #B4D59B background.
This text has white color on #B4D59B background.