HEX: #6BC096
RGB: (107,192,150)
#6BC096 contains mainly green and blue colors. Web safe color of #6BC096 is #66CC99 (or #6C9).
#6BC096 color RGB value is (107,192,150).
RGB: (107,192,150) (42%,75%,59%)
R 107 of 255 = 42%
G 192 of 255 = 75%
B 150 of 255 = 59%
R + G + B ~ 59%. #6BC096 is middle color (not dark and not light).
R + G + B =
107 + 192 + 150 = 449 (100%)
R 107 of 449 ~ 23.83%
G 192 of 449 ~ 42.76%
B 150 of 449 ~ 33.41%
#6BC096 color CMYK value is (44,0,22,25).
CMYK: (44,0,22,25) C44M0Y22K25 (44%,0%,22%,25%) (0.44/0.00/0.22/0.25)
6B | C0 | 96 | |
---|---|---|---|
RGB | 107 | 192 | 150 |
HSL | 150° | 40.28% | 58.63% |
HSB/HSV | 150° | 44.27% | 75.29% |
CMYK | 44.27% | 0.00% | 21.88% |
24.71% |
HEX | 6B | C0 | 96 |
Decimal | 107 | 192 | 150 |
Binary | 1101011 | 11000000 | 10010110 |
Octal | 153 | 300 | 226 |
Examples of css and html codes for elements with #6BC096 color. Also use rgb(107,192,150) instead hex code.
.myTextColor { color: #6BC096; }
<p style="color:#6BC096">This sample text font color is #6BC096.</p>
This text font color is #6BC096.
.myBgColor { background-color: #6BC096; }
<div style="background-color:#6BC096">Inner text</div>
This div background color is #6BC096.
.myBorderColor { border: 1px solid #6BC096; }
<div style="border:3px solid #6BC096">Div</div>
This div border color is #6BC096.
.myOpacity80 { color: #6BC096; opacity: 0.8; }
<p style="color:#6BC096;opacity:0.8;">80%</p>
Text with #6BC096 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6BC096;}
<p style="text-shadow: 3px 3px 1px #6BC096">Text here.</p>
This text has shadow with #6BC096 color.
.textShadow {text-shadow: 3px 3px 1px #6BC096, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6BC096, 5px 5px 20px red">Text here.</p>
This text has shadow with #6BC096 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6BC096, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6BC096, Direction=45, Strength=4)">Text</p>
This text has shadow with #6BC096 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6BC096; -webkit-box-shadow: 1px 1px 3px 2px #6BC096; box-shadow: 1px 1px 3px 2px #6BC096; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6BC096; -webkit-box-shadow: 1px 1px 3px 2px #6BC096; box-shadow:1px 1px 3px 2px #6BC096;">
Div content here</div>
This text has color #6BC096 on black background.
This text has color #6BC096 on white background.
This text has black color on #6BC096 background.
This text has white color on #6BC096 background.