HEX: #00B126
RGB: (0,177,38)
#00B126 contains mainly green color. Web safe color of #00B126 is #009933 (or #093).
#00B126 color RGB value is (0,177,38).
RGB: (0,177,38) (0%,69%,15%)
R 0 of 255 = 0%
G 177 of 255 = 69%
B 38 of 255 = 15%
R + G + B ~ 28%. #00B126 is quite dark color.
R + G + B =
0 + 177 + 38 = 215 (100%)
R 0 of 215 ~ 0%
G 177 of 215 ~ 82.33%
B 38 of 215 ~ 17.67%
#00B126 color CMYK value is (100,0,79,31).
CMYK: (100,0,79,31) C100M0Y79K31 (100%,0%,79%,31%) (1.00/0.00/0.79/0.31)
00 | B1 | 26 | |
---|---|---|---|
RGB | 0 | 177 | 38 |
HSL | 133° | 100.00% | 34.71% |
HSB/HSV | 133° | 100.00% | 69.41% |
CMYK | 100.00% | 0.00% | 78.53% |
30.59% |
HEX | 00 | B1 | 26 |
Decimal | 0 | 177 | 38 |
Binary | 0 | 10110001 | 100110 |
Octal | 0 | 261 | 46 |
Examples of css and html codes for elements with #00B126 color. Also use rgb(0,177,38) instead hex code.
.myTextColor { color: #00B126; }
<p style="color:#00B126">This sample text font color is #00B126.</p>
This text font color is #00B126.
.myBgColor { background-color: #00B126; }
<div style="background-color:#00B126">Inner text</div>
This div background color is #00B126.
.myBorderColor { border: 1px solid #00B126; }
<div style="border:3px solid #00B126">Div</div>
This div border color is #00B126.
.myOpacity80 { color: #00B126; opacity: 0.8; }
<p style="color:#00B126;opacity:0.8;">80%</p>
Text with #00B126 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00B126;}
<p style="text-shadow: 3px 3px 1px #00B126">Text here.</p>
This text has shadow with #00B126 color.
.textShadow {text-shadow: 3px 3px 1px #00B126, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00B126, 5px 5px 20px red">Text here.</p>
This text has shadow with #00B126 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00B126, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00B126, Direction=45, Strength=4)">Text</p>
This text has shadow with #00B126 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00B126; -webkit-box-shadow: 1px 1px 3px 2px #00B126; box-shadow: 1px 1px 3px 2px #00B126; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00B126; -webkit-box-shadow: 1px 1px 3px 2px #00B126; box-shadow:1px 1px 3px 2px #00B126;">
Div content here</div>
This text has color #00B126 on black background.
This text has color #00B126 on white background.
This text has black color on #00B126 background.
This text has white color on #00B126 background.