HEX: #7BD480
RGB: (123,212,128)
#7BD480 contains mainly green color. Web safe color of #7BD480 is #66CC66 (or #6C6).
#7BD480 color RGB value is (123,212,128).
RGB: (123,212,128) (48%,83%,50%)
R 123 of 255 = 48%
G 212 of 255 = 83%
B 128 of 255 = 50%
R + G + B ~ 60%. #7BD480 is middle color (not dark and not light).
R + G + B =
123 + 212 + 128 = 463 (100%)
R 123 of 463 ~ 26.57%
G 212 of 463 ~ 45.79%
B 128 of 463 ~ 27.65%
#7BD480 color CMYK value is (42,0,40,17).
CMYK: (42,0,40,17) C42M0Y40K17 (42%,0%,40%,17%) (0.42/0.00/0.40/0.17)
7B | D4 | 80 | |
---|---|---|---|
RGB | 123 | 212 | 128 |
HSL | 123° | 50.86% | 65.69% |
HSB/HSV | 123° | 41.98% | 83.14% |
CMYK | 41.98% | 0.00% | 39.62% |
16.86% |
HEX | 7B | D4 | 80 |
Decimal | 123 | 212 | 128 |
Binary | 1111011 | 11010100 | 10000000 |
Octal | 173 | 324 | 200 |
Examples of css and html codes for elements with #7BD480 color. Also use rgb(123,212,128) instead hex code.
.myTextColor { color: #7BD480; }
<p style="color:#7BD480">This sample text font color is #7BD480.</p>
This text font color is #7BD480.
.myBgColor { background-color: #7BD480; }
<div style="background-color:#7BD480">Inner text</div>
This div background color is #7BD480.
.myBorderColor { border: 1px solid #7BD480; }
<div style="border:3px solid #7BD480">Div</div>
This div border color is #7BD480.
.myOpacity80 { color: #7BD480; opacity: 0.8; }
<p style="color:#7BD480;opacity:0.8;">80%</p>
Text with #7BD480 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7BD480;}
<p style="text-shadow: 3px 3px 1px #7BD480">Text here.</p>
This text has shadow with #7BD480 color.
.textShadow {text-shadow: 3px 3px 1px #7BD480, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7BD480, 5px 5px 20px red">Text here.</p>
This text has shadow with #7BD480 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7BD480, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7BD480, Direction=45, Strength=4)">Text</p>
This text has shadow with #7BD480 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7BD480; -webkit-box-shadow: 1px 1px 3px 2px #7BD480; box-shadow: 1px 1px 3px 2px #7BD480; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7BD480; -webkit-box-shadow: 1px 1px 3px 2px #7BD480; box-shadow:1px 1px 3px 2px #7BD480;">
Div content here</div>
This text has color #7BD480 on black background.
This text has color #7BD480 on white background.
This text has black color on #7BD480 background.
This text has white color on #7BD480 background.