HEX: #127E52
RGB: (18,126,82)
#127E52 contains mainly green and blue colors. Web safe color of #127E52 is #006666 (or #066).
#127E52 color RGB value is (18,126,82).
RGB: (18,126,82) (7%,49%,32%)
R 18 of 255 = 7%
G 126 of 255 = 49%
B 82 of 255 = 32%
R + G + B ~ 29%. #127E52 is quite dark color.
R + G + B =
18 + 126 + 82 = 226 (100%)
R 18 of 226 ~ 7.96%
G 126 of 226 ~ 55.75%
B 82 of 226 ~ 36.28%
#127E52 color CMYK value is (86,0,35,51).
CMYK: (86,0,35,51) C86M0Y35K51 (86%,0%,35%,51%) (0.86/0.00/0.35/0.51)
12 | 7E | 52 | |
---|---|---|---|
RGB | 18 | 126 | 82 |
HSL | 156° | 75.00% | 28.24% |
HSB/HSV | 156° | 85.71% | 49.41% |
CMYK | 85.71% | 0.00% | 34.92% |
50.59% |
HEX | 12 | 7E | 52 |
Decimal | 18 | 126 | 82 |
Binary | 10010 | 1111110 | 1010010 |
Octal | 22 | 176 | 122 |
Examples of css and html codes for elements with #127E52 color. Also use rgb(18,126,82) instead hex code.
.myTextColor { color: #127E52; }
<p style="color:#127E52">This sample text font color is #127E52.</p>
This text font color is #127E52.
.myBgColor { background-color: #127E52; }
<div style="background-color:#127E52">Inner text</div>
This div background color is #127E52.
.myBorderColor { border: 1px solid #127E52; }
<div style="border:3px solid #127E52">Div</div>
This div border color is #127E52.
.myOpacity80 { color: #127E52; opacity: 0.8; }
<p style="color:#127E52;opacity:0.8;">80%</p>
Text with #127E52 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #127E52;}
<p style="text-shadow: 3px 3px 1px #127E52">Text here.</p>
This text has shadow with #127E52 color.
.textShadow {text-shadow: 3px 3px 1px #127E52, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #127E52, 5px 5px 20px red">Text here.</p>
This text has shadow with #127E52 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#127E52, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#127E52, Direction=45, Strength=4)">Text</p>
This text has shadow with #127E52 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #127E52; -webkit-box-shadow: 1px 1px 3px 2px #127E52; box-shadow: 1px 1px 3px 2px #127E52; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #127E52; -webkit-box-shadow: 1px 1px 3px 2px #127E52; box-shadow:1px 1px 3px 2px #127E52;">
Div content here</div>
This text has color #127E52 on black background.
This text has color #127E52 on white background.
This text has black color on #127E52 background.
This text has white color on #127E52 background.