HEX: #78C7AD
RGB: (120,199,173)
#78C7AD contains mainly green and blue colors. Web safe color of #78C7AD is #66CC99 (or #6C9).
#78C7AD color RGB value is (120,199,173).
RGB: (120,199,173) (47%,78%,68%)
R 120 of 255 = 47%
G 199 of 255 = 78%
B 173 of 255 = 68%
R + G + B ~ 64%. #78C7AD is quite light color.
R + G + B =
120 + 199 + 173 = 492 (100%)
R 120 of 492 ~ 24.39%
G 199 of 492 ~ 40.45%
B 173 of 492 ~ 35.16%
#78C7AD color CMYK value is (40,0,13,22).
CMYK: (40,0,13,22) C40M0Y13K22 (40%,0%,13%,22%) (0.40/0.00/0.13/0.22)
78 | C7 | AD | |
---|---|---|---|
RGB | 120 | 199 | 173 |
HSL | 160° | 41.36% | 62.55% |
HSB/HSV | 160° | 39.70% | 78.04% |
CMYK | 39.70% | 0.00% | 13.07% |
21.96% |
HEX | 78 | C7 | AD |
Decimal | 120 | 199 | 173 |
Binary | 1111000 | 11000111 | 10101101 |
Octal | 170 | 307 | 255 |
Examples of css and html codes for elements with #78C7AD color. Also use rgb(120,199,173) instead hex code.
.myTextColor { color: #78C7AD; }
<p style="color:#78C7AD">This sample text font color is #78C7AD.</p>
This text font color is #78C7AD.
.myBgColor { background-color: #78C7AD; }
<div style="background-color:#78C7AD">Inner text</div>
This div background color is #78C7AD.
.myBorderColor { border: 1px solid #78C7AD; }
<div style="border:3px solid #78C7AD">Div</div>
This div border color is #78C7AD.
.myOpacity80 { color: #78C7AD; opacity: 0.8; }
<p style="color:#78C7AD;opacity:0.8;">80%</p>
Text with #78C7AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #78C7AD;}
<p style="text-shadow: 3px 3px 1px #78C7AD">Text here.</p>
This text has shadow with #78C7AD color.
.textShadow {text-shadow: 3px 3px 1px #78C7AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #78C7AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #78C7AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#78C7AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#78C7AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #78C7AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #78C7AD; -webkit-box-shadow: 1px 1px 3px 2px #78C7AD; box-shadow: 1px 1px 3px 2px #78C7AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #78C7AD; -webkit-box-shadow: 1px 1px 3px 2px #78C7AD; box-shadow:1px 1px 3px 2px #78C7AD;">
Div content here</div>
This text has color #78C7AD on black background.
This text has color #78C7AD on white background.
This text has black color on #78C7AD background.
This text has white color on #78C7AD background.