HEX: #6BC060
RGB: (107,192,96)
#6BC060 contains mainly green color. Web safe color of #6BC060 is #66CC66 (or #6C6).
#6BC060 color RGB value is (107,192,96).
RGB: (107,192,96) (42%,75%,38%)
R 107 of 255 = 42%
G 192 of 255 = 75%
B 96 of 255 = 38%
R + G + B ~ 52%. #6BC060 is middle color (not dark and not light).
R + G + B =
107 + 192 + 96 = 395 (100%)
R 107 of 395 ~ 27.09%
G 192 of 395 ~ 48.61%
B 96 of 395 ~ 24.3%
#6BC060 color CMYK value is (44,0,50,25).
CMYK: (44,0,50,25) C44M0Y50K25 (44%,0%,50%,25%) (0.44/0.00/0.50/0.25)
6B | C0 | 60 | |
---|---|---|---|
RGB | 107 | 192 | 96 |
HSL | 113° | 43.24% | 56.47% |
HSB/HSV | 113° | 50.00% | 75.29% |
CMYK | 44.27% | 0.00% | 50.00% |
24.71% |
HEX | 6B | C0 | 60 |
Decimal | 107 | 192 | 96 |
Binary | 1101011 | 11000000 | 1100000 |
Octal | 153 | 300 | 140 |
Examples of css and html codes for elements with #6BC060 color. Also use rgb(107,192,96) instead hex code.
.myTextColor { color: #6BC060; }
<p style="color:#6BC060">This sample text font color is #6BC060.</p>
This text font color is #6BC060.
.myBgColor { background-color: #6BC060; }
<div style="background-color:#6BC060">Inner text</div>
This div background color is #6BC060.
.myBorderColor { border: 1px solid #6BC060; }
<div style="border:3px solid #6BC060">Div</div>
This div border color is #6BC060.
.myOpacity80 { color: #6BC060; opacity: 0.8; }
<p style="color:#6BC060;opacity:0.8;">80%</p>
Text with #6BC060 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6BC060;}
<p style="text-shadow: 3px 3px 1px #6BC060">Text here.</p>
This text has shadow with #6BC060 color.
.textShadow {text-shadow: 3px 3px 1px #6BC060, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6BC060, 5px 5px 20px red">Text here.</p>
This text has shadow with #6BC060 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6BC060, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6BC060, Direction=45, Strength=4)">Text</p>
This text has shadow with #6BC060 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6BC060; -webkit-box-shadow: 1px 1px 3px 2px #6BC060; box-shadow: 1px 1px 3px 2px #6BC060; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6BC060; -webkit-box-shadow: 1px 1px 3px 2px #6BC060; box-shadow:1px 1px 3px 2px #6BC060;">
Div content here</div>
This text has color #6BC060 on black background.
This text has color #6BC060 on white background.
This text has black color on #6BC060 background.
This text has white color on #6BC060 background.