HEX: #B6E378
RGB: (182,227,120)
#B6E378 contains mainly red and green colors. Web safe color of #B6E378 is #CCCC66 (or #CC6).
#B6E378 color RGB value is (182,227,120).
RGB: (182,227,120) (71%,89%,47%)
R 182 of 255 = 71%
G 227 of 255 = 89%
B 120 of 255 = 47%
R + G + B ~ 69%. #B6E378 is quite light color.
R + G + B =
182 + 227 + 120 = 529 (100%)
R 182 of 529 ~ 34.4%
G 227 of 529 ~ 42.91%
B 120 of 529 ~ 22.68%
#B6E378 color CMYK value is (20,0,47,11).
CMYK: (20,0,47,11) C20M0Y47K11 (20%,0%,47%,11%) (0.20/0.00/0.47/0.11)
B6 | E3 | 78 | |
---|---|---|---|
RGB | 182 | 227 | 120 |
HSL | 85° | 65.64% | 68.04% |
HSB/HSV | 85° | 47.14% | 89.02% |
CMYK | 19.82% | 0.00% | 47.14% |
10.98% |
HEX | B6 | E3 | 78 |
Decimal | 182 | 227 | 120 |
Binary | 10110110 | 11100011 | 1111000 |
Octal | 266 | 343 | 170 |
Examples of css and html codes for elements with #B6E378 color. Also use rgb(182,227,120) instead hex code.
.myTextColor { color: #B6E378; }
<p style="color:#B6E378">This sample text font color is #B6E378.</p>
This text font color is #B6E378.
.myBgColor { background-color: #B6E378; }
<div style="background-color:#B6E378">Inner text</div>
This div background color is #B6E378.
.myBorderColor { border: 1px solid #B6E378; }
<div style="border:3px solid #B6E378">Div</div>
This div border color is #B6E378.
.myOpacity80 { color: #B6E378; opacity: 0.8; }
<p style="color:#B6E378;opacity:0.8;">80%</p>
Text with #B6E378 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6E378;}
<p style="text-shadow: 3px 3px 1px #B6E378">Text here.</p>
This text has shadow with #B6E378 color.
.textShadow {text-shadow: 3px 3px 1px #B6E378, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6E378, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6E378 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6E378, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6E378, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6E378 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6E378; -webkit-box-shadow: 1px 1px 3px 2px #B6E378; box-shadow: 1px 1px 3px 2px #B6E378; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6E378; -webkit-box-shadow: 1px 1px 3px 2px #B6E378; box-shadow:1px 1px 3px 2px #B6E378;">
Div content here</div>
This text has color #B6E378 on black background.
This text has color #B6E378 on white background.
This text has black color on #B6E378 background.
This text has white color on #B6E378 background.