HEX: #00672B
RGB: (0,103,43)
#00672B contains mainly green color. Web safe color of #00672B is #006633 (or #063).
#00672B color RGB value is (0,103,43).
RGB: (0,103,43) (0%,40%,17%)
R 0 of 255 = 0%
G 103 of 255 = 40%
B 43 of 255 = 17%
R + G + B ~ 19%. #00672B is dark color.
R + G + B =
0 + 103 + 43 = 146 (100%)
R 0 of 146 ~ 0%
G 103 of 146 ~ 70.55%
B 43 of 146 ~ 29.45%
#00672B color CMYK value is (100,0,58,60).
CMYK: (100,0,58,60) C100M0Y58K60 (100%,0%,58%,60%) (1.00/0.00/0.58/0.60)
00 | 67 | 2B | |
---|---|---|---|
RGB | 0 | 103 | 43 |
HSL | 145° | 100.00% | 20.20% |
HSB/HSV | 145° | 100.00% | 40.39% |
CMYK | 100.00% | 0.00% | 58.25% |
59.61% |
HEX | 00 | 67 | 2B |
Decimal | 0 | 103 | 43 |
Binary | 0 | 1100111 | 101011 |
Octal | 0 | 147 | 53 |
Examples of css and html codes for elements with #00672B color. Also use rgb(0,103,43) instead hex code.
.myTextColor { color: #00672B; }
<p style="color:#00672B">This sample text font color is #00672B.</p>
This text font color is #00672B.
.myBgColor { background-color: #00672B; }
<div style="background-color:#00672B">Inner text</div>
This div background color is #00672B.
.myBorderColor { border: 1px solid #00672B; }
<div style="border:3px solid #00672B">Div</div>
This div border color is #00672B.
.myOpacity80 { color: #00672B; opacity: 0.8; }
<p style="color:#00672B;opacity:0.8;">80%</p>
Text with #00672B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00672B;}
<p style="text-shadow: 3px 3px 1px #00672B">Text here.</p>
This text has shadow with #00672B color.
.textShadow {text-shadow: 3px 3px 1px #00672B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00672B, 5px 5px 20px red">Text here.</p>
This text has shadow with #00672B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00672B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00672B, Direction=45, Strength=4)">Text</p>
This text has shadow with #00672B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00672B; -webkit-box-shadow: 1px 1px 3px 2px #00672B; box-shadow: 1px 1px 3px 2px #00672B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00672B; -webkit-box-shadow: 1px 1px 3px 2px #00672B; box-shadow:1px 1px 3px 2px #00672B;">
Div content here</div>
This text has color #00672B on black background.
This text has color #00672B on white background.
This text has black color on #00672B background.
This text has white color on #00672B background.