HEX: #6B957F
RGB: (107,149,127)
#6B957F contains red, green and blue colors in about the same proportion. Web safe color of #6B957F is #669966 (or #696).
#6B957F color RGB value is (107,149,127).
RGB: (107,149,127) (42%,58%,50%)
R 107 of 255 = 42%
G 149 of 255 = 58%
B 127 of 255 = 50%
R + G + B ~ 50%. #6B957F is middle color (not dark and not light).
R + G + B =
107 + 149 + 127 = 383 (100%)
R 107 of 383 ~ 27.94%
G 149 of 383 ~ 38.9%
B 127 of 383 ~ 33.16%
#6B957F color CMYK value is (28,0,15,42).
CMYK: (28,0,15,42) C28M0Y15K42 (28%,0%,15%,42%) (0.28/0.00/0.15/0.42)
6B | 95 | 7F | |
---|---|---|---|
RGB | 107 | 149 | 127 |
HSL | 149° | 16.54% | 50.20% |
HSB/HSV | 149° | 28.19% | 58.43% |
CMYK | 28.19% | 0.00% | 14.77% |
41.57% |
HEX | 6B | 95 | 7F |
Decimal | 107 | 149 | 127 |
Binary | 1101011 | 10010101 | 1111111 |
Octal | 153 | 225 | 177 |
Examples of css and html codes for elements with #6B957F color. Also use rgb(107,149,127) instead hex code.
.myTextColor { color: #6B957F; }
<p style="color:#6B957F">This sample text font color is #6B957F.</p>
This text font color is #6B957F.
.myBgColor { background-color: #6B957F; }
<div style="background-color:#6B957F">Inner text</div>
This div background color is #6B957F.
.myBorderColor { border: 1px solid #6B957F; }
<div style="border:3px solid #6B957F">Div</div>
This div border color is #6B957F.
.myOpacity80 { color: #6B957F; opacity: 0.8; }
<p style="color:#6B957F;opacity:0.8;">80%</p>
Text with #6B957F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B957F;}
<p style="text-shadow: 3px 3px 1px #6B957F">Text here.</p>
This text has shadow with #6B957F color.
.textShadow {text-shadow: 3px 3px 1px #6B957F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B957F, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B957F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B957F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B957F, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B957F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B957F; -webkit-box-shadow: 1px 1px 3px 2px #6B957F; box-shadow: 1px 1px 3px 2px #6B957F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B957F; -webkit-box-shadow: 1px 1px 3px 2px #6B957F; box-shadow:1px 1px 3px 2px #6B957F;">
Div content here</div>
This text has color #6B957F on black background.
This text has color #6B957F on white background.
This text has black color on #6B957F background.
This text has white color on #6B957F background.