HEX: #78BD7D
RGB: (120,189,125)
#78BD7D contains mainly green color. Web safe color of #78BD7D is #66CC66 (or #6C6).
#78BD7D color RGB value is (120,189,125).
RGB: (120,189,125) (47%,74%,49%)
R 120 of 255 = 47%
G 189 of 255 = 74%
B 125 of 255 = 49%
R + G + B ~ 57%. #78BD7D is middle color (not dark and not light).
R + G + B =
120 + 189 + 125 = 434 (100%)
R 120 of 434 ~ 27.65%
G 189 of 434 ~ 43.55%
B 125 of 434 ~ 28.8%
#78BD7D color CMYK value is (37,0,34,26).
CMYK: (37,0,34,26) C37M0Y34K26 (37%,0%,34%,26%) (0.37/0.00/0.34/0.26)
78 | BD | 7D | |
---|---|---|---|
RGB | 120 | 189 | 125 |
HSL | 124° | 34.33% | 60.59% |
HSB/HSV | 124° | 36.51% | 74.12% |
CMYK | 36.51% | 0.00% | 33.86% |
25.88% |
HEX | 78 | BD | 7D |
Decimal | 120 | 189 | 125 |
Binary | 1111000 | 10111101 | 1111101 |
Octal | 170 | 275 | 175 |
Examples of css and html codes for elements with #78BD7D color. Also use rgb(120,189,125) instead hex code.
.myTextColor { color: #78BD7D; }
<p style="color:#78BD7D">This sample text font color is #78BD7D.</p>
This text font color is #78BD7D.
.myBgColor { background-color: #78BD7D; }
<div style="background-color:#78BD7D">Inner text</div>
This div background color is #78BD7D.
.myBorderColor { border: 1px solid #78BD7D; }
<div style="border:3px solid #78BD7D">Div</div>
This div border color is #78BD7D.
.myOpacity80 { color: #78BD7D; opacity: 0.8; }
<p style="color:#78BD7D;opacity:0.8;">80%</p>
Text with #78BD7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #78BD7D;}
<p style="text-shadow: 3px 3px 1px #78BD7D">Text here.</p>
This text has shadow with #78BD7D color.
.textShadow {text-shadow: 3px 3px 1px #78BD7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #78BD7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #78BD7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#78BD7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#78BD7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #78BD7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #78BD7D; -webkit-box-shadow: 1px 1px 3px 2px #78BD7D; box-shadow: 1px 1px 3px 2px #78BD7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #78BD7D; -webkit-box-shadow: 1px 1px 3px 2px #78BD7D; box-shadow:1px 1px 3px 2px #78BD7D;">
Div content here</div>
This text has color #78BD7D on black background.
This text has color #78BD7D on white background.
This text has black color on #78BD7D background.
This text has white color on #78BD7D background.