HEX: #7AB780
RGB: (122,183,128)
#7AB780 contains mainly green and blue colors. Web safe color of #7AB780 is #66CC66 (or #6C6).
#7AB780 color RGB value is (122,183,128).
RGB: (122,183,128) (48%,72%,50%)
R 122 of 255 = 48%
G 183 of 255 = 72%
B 128 of 255 = 50%
R + G + B ~ 57%. #7AB780 is middle color (not dark and not light).
R + G + B =
122 + 183 + 128 = 433 (100%)
R 122 of 433 ~ 28.18%
G 183 of 433 ~ 42.26%
B 128 of 433 ~ 29.56%
#7AB780 color CMYK value is (33,0,30,28).
CMYK: (33,0,30,28) C33M0Y30K28 (33%,0%,30%,28%) (0.33/0.00/0.30/0.28)
7A | B7 | 80 | |
---|---|---|---|
RGB | 122 | 183 | 128 |
HSL | 126° | 29.76% | 59.80% |
HSB/HSV | 126° | 33.33% | 71.76% |
CMYK | 33.33% | 0.00% | 30.05% |
28.24% |
HEX | 7A | B7 | 80 |
Decimal | 122 | 183 | 128 |
Binary | 1111010 | 10110111 | 10000000 |
Octal | 172 | 267 | 200 |
Examples of css and html codes for elements with #7AB780 color. Also use rgb(122,183,128) instead hex code.
.myTextColor { color: #7AB780; }
<p style="color:#7AB780">This sample text font color is #7AB780.</p>
This text font color is #7AB780.
.myBgColor { background-color: #7AB780; }
<div style="background-color:#7AB780">Inner text</div>
This div background color is #7AB780.
.myBorderColor { border: 1px solid #7AB780; }
<div style="border:3px solid #7AB780">Div</div>
This div border color is #7AB780.
.myOpacity80 { color: #7AB780; opacity: 0.8; }
<p style="color:#7AB780;opacity:0.8;">80%</p>
Text with #7AB780 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7AB780;}
<p style="text-shadow: 3px 3px 1px #7AB780">Text here.</p>
This text has shadow with #7AB780 color.
.textShadow {text-shadow: 3px 3px 1px #7AB780, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7AB780, 5px 5px 20px red">Text here.</p>
This text has shadow with #7AB780 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7AB780, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7AB780, Direction=45, Strength=4)">Text</p>
This text has shadow with #7AB780 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7AB780; -webkit-box-shadow: 1px 1px 3px 2px #7AB780; box-shadow: 1px 1px 3px 2px #7AB780; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7AB780; -webkit-box-shadow: 1px 1px 3px 2px #7AB780; box-shadow:1px 1px 3px 2px #7AB780;">
Div content here</div>
This text has color #7AB780 on black background.
This text has color #7AB780 on white background.
This text has black color on #7AB780 background.
This text has white color on #7AB780 background.