HEX: #B4FF7D
RGB: (180,255,125)
#B4FF7D contains mainly green color. Web safe color of #B4FF7D is #CCFF66 (or #CF6).
#B4FF7D color RGB value is (180,255,125).
RGB: (180,255,125) (71%,100%,49%)
R 180 of 255 = 71%
G 255 of 255 = 100%
B 125 of 255 = 49%
R + G + B ~ 73%. #B4FF7D is quite light color.
R + G + B =
180 + 255 + 125 = 560 (100%)
R 180 of 560 ~ 32.14%
G 255 of 560 ~ 45.54%
B 125 of 560 ~ 22.32%
#B4FF7D color CMYK value is (29,0,51,0).
CMYK: (29,0,51,0) C29M0Y51K0 (29%,0%,51%,0%) (0.29/0.00/0.51/0.00)
B4 | FF | 7D | |
---|---|---|---|
RGB | 180 | 255 | 125 |
HSL | 95° | 100.00% | 74.51% |
HSB/HSV | 95° | 50.98% | 100.00% |
CMYK | 29.41% | 0.00% | 50.98% |
0.00% |
HEX | B4 | FF | 7D |
Decimal | 180 | 255 | 125 |
Binary | 10110100 | 11111111 | 1111101 |
Octal | 264 | 377 | 175 |
Examples of css and html codes for elements with #B4FF7D color. Also use rgb(180,255,125) instead hex code.
.myTextColor { color: #B4FF7D; }
<p style="color:#B4FF7D">This sample text font color is #B4FF7D.</p>
This text font color is #B4FF7D.
.myBgColor { background-color: #B4FF7D; }
<div style="background-color:#B4FF7D">Inner text</div>
This div background color is #B4FF7D.
.myBorderColor { border: 1px solid #B4FF7D; }
<div style="border:3px solid #B4FF7D">Div</div>
This div border color is #B4FF7D.
.myOpacity80 { color: #B4FF7D; opacity: 0.8; }
<p style="color:#B4FF7D;opacity:0.8;">80%</p>
Text with #B4FF7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4FF7D;}
<p style="text-shadow: 3px 3px 1px #B4FF7D">Text here.</p>
This text has shadow with #B4FF7D color.
.textShadow {text-shadow: 3px 3px 1px #B4FF7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4FF7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4FF7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4FF7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4FF7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4FF7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4FF7D; -webkit-box-shadow: 1px 1px 3px 2px #B4FF7D; box-shadow: 1px 1px 3px 2px #B4FF7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4FF7D; -webkit-box-shadow: 1px 1px 3px 2px #B4FF7D; box-shadow:1px 1px 3px 2px #B4FF7D;">
Div content here</div>
This text has color #B4FF7D on black background.
This text has color #B4FF7D on white background.
This text has black color on #B4FF7D background.
This text has white color on #B4FF7D background.