HEX: #68B88E
RGB: (104,184,142)
#68B88E contains mainly green and blue colors. Web safe color of #68B88E is #66CC99 (or #6C9).
#68B88E color RGB value is (104,184,142).
RGB: (104,184,142) (41%,72%,56%)
R 104 of 255 = 41%
G 184 of 255 = 72%
B 142 of 255 = 56%
R + G + B ~ 56%. #68B88E is middle color (not dark and not light).
R + G + B =
104 + 184 + 142 = 430 (100%)
R 104 of 430 ~ 24.19%
G 184 of 430 ~ 42.79%
B 142 of 430 ~ 33.02%
#68B88E color CMYK value is (43,0,23,28).
CMYK: (43,0,23,28) C43M0Y23K28 (43%,0%,23%,28%) (0.43/0.00/0.23/0.28)
68 | B8 | 8E | |
---|---|---|---|
RGB | 104 | 184 | 142 |
HSL | 149° | 36.04% | 56.47% |
HSB/HSV | 149° | 43.48% | 72.16% |
CMYK | 43.48% | 0.00% | 22.83% |
27.84% |
HEX | 68 | B8 | 8E |
Decimal | 104 | 184 | 142 |
Binary | 1101000 | 10111000 | 10001110 |
Octal | 150 | 270 | 216 |
Examples of css and html codes for elements with #68B88E color. Also use rgb(104,184,142) instead hex code.
.myTextColor { color: #68B88E; }
<p style="color:#68B88E">This sample text font color is #68B88E.</p>
This text font color is #68B88E.
.myBgColor { background-color: #68B88E; }
<div style="background-color:#68B88E">Inner text</div>
This div background color is #68B88E.
.myBorderColor { border: 1px solid #68B88E; }
<div style="border:3px solid #68B88E">Div</div>
This div border color is #68B88E.
.myOpacity80 { color: #68B88E; opacity: 0.8; }
<p style="color:#68B88E;opacity:0.8;">80%</p>
Text with #68B88E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #68B88E;}
<p style="text-shadow: 3px 3px 1px #68B88E">Text here.</p>
This text has shadow with #68B88E color.
.textShadow {text-shadow: 3px 3px 1px #68B88E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #68B88E, 5px 5px 20px red">Text here.</p>
This text has shadow with #68B88E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#68B88E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#68B88E, Direction=45, Strength=4)">Text</p>
This text has shadow with #68B88E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #68B88E; -webkit-box-shadow: 1px 1px 3px 2px #68B88E; box-shadow: 1px 1px 3px 2px #68B88E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #68B88E; -webkit-box-shadow: 1px 1px 3px 2px #68B88E; box-shadow:1px 1px 3px 2px #68B88E;">
Div content here</div>
This text has color #68B88E on black background.
This text has color #68B88E on white background.
This text has black color on #68B88E background.
This text has white color on #68B88E background.