HEX: #6BB673
RGB: (107,182,115)
#6BB673 contains mainly green color. Web safe color of #6BB673 is #66CC66 (or #6C6).
#6BB673 color RGB value is (107,182,115).
RGB: (107,182,115) (42%,71%,45%)
R 107 of 255 = 42%
G 182 of 255 = 71%
B 115 of 255 = 45%
R + G + B ~ 53%. #6BB673 is middle color (not dark and not light).
R + G + B =
107 + 182 + 115 = 404 (100%)
R 107 of 404 ~ 26.49%
G 182 of 404 ~ 45.05%
B 115 of 404 ~ 28.47%
#6BB673 color CMYK value is (41,0,37,29).
CMYK: (41,0,37,29) C41M0Y37K29 (41%,0%,37%,29%) (0.41/0.00/0.37/0.29)
6B | B6 | 73 | |
---|---|---|---|
RGB | 107 | 182 | 115 |
HSL | 126° | 33.94% | 56.67% |
HSB/HSV | 126° | 41.21% | 71.37% |
CMYK | 41.21% | 0.00% | 36.81% |
28.63% |
HEX | 6B | B6 | 73 |
Decimal | 107 | 182 | 115 |
Binary | 1101011 | 10110110 | 1110011 |
Octal | 153 | 266 | 163 |
Examples of css and html codes for elements with #6BB673 color. Also use rgb(107,182,115) instead hex code.
.myTextColor { color: #6BB673; }
<p style="color:#6BB673">This sample text font color is #6BB673.</p>
This text font color is #6BB673.
.myBgColor { background-color: #6BB673; }
<div style="background-color:#6BB673">Inner text</div>
This div background color is #6BB673.
.myBorderColor { border: 1px solid #6BB673; }
<div style="border:3px solid #6BB673">Div</div>
This div border color is #6BB673.
.myOpacity80 { color: #6BB673; opacity: 0.8; }
<p style="color:#6BB673;opacity:0.8;">80%</p>
Text with #6BB673 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6BB673;}
<p style="text-shadow: 3px 3px 1px #6BB673">Text here.</p>
This text has shadow with #6BB673 color.
.textShadow {text-shadow: 3px 3px 1px #6BB673, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6BB673, 5px 5px 20px red">Text here.</p>
This text has shadow with #6BB673 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6BB673, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6BB673, Direction=45, Strength=4)">Text</p>
This text has shadow with #6BB673 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6BB673; -webkit-box-shadow: 1px 1px 3px 2px #6BB673; box-shadow: 1px 1px 3px 2px #6BB673; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6BB673; -webkit-box-shadow: 1px 1px 3px 2px #6BB673; box-shadow:1px 1px 3px 2px #6BB673;">
Div content here</div>
This text has color #6BB673 on black background.
This text has color #6BB673 on white background.
This text has black color on #6BB673 background.
This text has white color on #6BB673 background.