HEX: #6BB09B
RGB: (107,176,155)
#6BB09B contains mainly green and blue colors. Web safe color of #6BB09B is #669999 (or #699).
#6BB09B color RGB value is (107,176,155).
RGB: (107,176,155) (42%,69%,61%)
R 107 of 255 = 42%
G 176 of 255 = 69%
B 155 of 255 = 61%
R + G + B ~ 57%. #6BB09B is middle color (not dark and not light).
R + G + B =
107 + 176 + 155 = 438 (100%)
R 107 of 438 ~ 24.43%
G 176 of 438 ~ 40.18%
B 155 of 438 ~ 35.39%
#6BB09B color CMYK value is (39,0,12,31).
CMYK: (39,0,12,31) C39M0Y12K31 (39%,0%,12%,31%) (0.39/0.00/0.12/0.31)
6B | B0 | 9B | |
---|---|---|---|
RGB | 107 | 176 | 155 |
HSL | 162° | 30.40% | 55.49% |
HSB/HSV | 162° | 39.20% | 69.02% |
CMYK | 39.20% | 0.00% | 11.93% |
30.98% |
HEX | 6B | B0 | 9B |
Decimal | 107 | 176 | 155 |
Binary | 1101011 | 10110000 | 10011011 |
Octal | 153 | 260 | 233 |
Examples of css and html codes for elements with #6BB09B color. Also use rgb(107,176,155) instead hex code.
.myTextColor { color: #6BB09B; }
<p style="color:#6BB09B">This sample text font color is #6BB09B.</p>
This text font color is #6BB09B.
.myBgColor { background-color: #6BB09B; }
<div style="background-color:#6BB09B">Inner text</div>
This div background color is #6BB09B.
.myBorderColor { border: 1px solid #6BB09B; }
<div style="border:3px solid #6BB09B">Div</div>
This div border color is #6BB09B.
.myOpacity80 { color: #6BB09B; opacity: 0.8; }
<p style="color:#6BB09B;opacity:0.8;">80%</p>
Text with #6BB09B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6BB09B;}
<p style="text-shadow: 3px 3px 1px #6BB09B">Text here.</p>
This text has shadow with #6BB09B color.
.textShadow {text-shadow: 3px 3px 1px #6BB09B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6BB09B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6BB09B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6BB09B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6BB09B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6BB09B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6BB09B; -webkit-box-shadow: 1px 1px 3px 2px #6BB09B; box-shadow: 1px 1px 3px 2px #6BB09B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6BB09B; -webkit-box-shadow: 1px 1px 3px 2px #6BB09B; box-shadow:1px 1px 3px 2px #6BB09B;">
Div content here</div>
This text has color #6BB09B on black background.
This text has color #6BB09B on white background.
This text has black color on #6BB09B background.
This text has white color on #6BB09B background.