HEX: #137C78
RGB: (19,124,120)
#137C78 contains mainly green and blue colors. Web safe color of #137C78 is #006666 (or #066).
#137C78 color RGB value is (19,124,120).
RGB: (19,124,120) (7%,49%,47%)
R 19 of 255 = 7%
G 124 of 255 = 49%
B 120 of 255 = 47%
R + G + B ~ 34%. #137C78 is quite dark color.
R + G + B =
19 + 124 + 120 = 263 (100%)
R 19 of 263 ~ 7.22%
G 124 of 263 ~ 47.15%
B 120 of 263 ~ 45.63%
#137C78 color CMYK value is (85,0,3,51).
CMYK: (85,0,3,51) C85M0Y3K51 (85%,0%,3%,51%) (0.85/0.00/0.03/0.51)
13 | 7C | 78 | |
---|---|---|---|
RGB | 19 | 124 | 120 |
HSL | 178° | 73.43% | 28.04% |
HSB/HSV | 178° | 84.68% | 48.63% |
CMYK | 84.68% | 0.00% | 3.23% |
51.37% |
HEX | 13 | 7C | 78 |
Decimal | 19 | 124 | 120 |
Binary | 10011 | 1111100 | 1111000 |
Octal | 23 | 174 | 170 |
Examples of css and html codes for elements with #137C78 color. Also use rgb(19,124,120) instead hex code.
.myTextColor { color: #137C78; }
<p style="color:#137C78">This sample text font color is #137C78.</p>
This text font color is #137C78.
.myBgColor { background-color: #137C78; }
<div style="background-color:#137C78">Inner text</div>
This div background color is #137C78.
.myBorderColor { border: 1px solid #137C78; }
<div style="border:3px solid #137C78">Div</div>
This div border color is #137C78.
.myOpacity80 { color: #137C78; opacity: 0.8; }
<p style="color:#137C78;opacity:0.8;">80%</p>
Text with #137C78 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #137C78;}
<p style="text-shadow: 3px 3px 1px #137C78">Text here.</p>
This text has shadow with #137C78 color.
.textShadow {text-shadow: 3px 3px 1px #137C78, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #137C78, 5px 5px 20px red">Text here.</p>
This text has shadow with #137C78 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#137C78, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#137C78, Direction=45, Strength=4)">Text</p>
This text has shadow with #137C78 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #137C78; -webkit-box-shadow: 1px 1px 3px 2px #137C78; box-shadow: 1px 1px 3px 2px #137C78; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #137C78; -webkit-box-shadow: 1px 1px 3px 2px #137C78; box-shadow:1px 1px 3px 2px #137C78;">
Div content here</div>
This text has color #137C78 on black background.
This text has color #137C78 on white background.
This text has black color on #137C78 background.
This text has white color on #137C78 background.