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