HEX: #88FF6A
RGB: (136,255,106)
#88FF6A contains mainly green color. Web safe color of #88FF6A is #99FF66 (or #9F6).
#88FF6A color RGB value is (136,255,106).
RGB: (136,255,106) (53%,100%,42%)
R 136 of 255 = 53%
G 255 of 255 = 100%
B 106 of 255 = 42%
R + G + B ~ 65%. #88FF6A is quite light color.
R + G + B =
136 + 255 + 106 = 497 (100%)
R 136 of 497 ~ 27.36%
G 255 of 497 ~ 51.31%
B 106 of 497 ~ 21.33%
#88FF6A color CMYK value is (47,0,58,0).
CMYK: (47,0,58,0) C47M0Y58K0 (47%,0%,58%,0%) (0.47/0.00/0.58/0.00)
88 | FF | 6A | |
---|---|---|---|
RGB | 136 | 255 | 106 |
HSL | 108° | 100.00% | 70.78% |
HSB/HSV | 108° | 58.43% | 100.00% |
CMYK | 46.67% | 0.00% | 58.43% |
0.00% |
HEX | 88 | FF | 6A |
Decimal | 136 | 255 | 106 |
Binary | 10001000 | 11111111 | 1101010 |
Octal | 210 | 377 | 152 |
Examples of css and html codes for elements with #88FF6A color. Also use rgb(136,255,106) instead hex code.
.myTextColor { color: #88FF6A; }
<p style="color:#88FF6A">This sample text font color is #88FF6A.</p>
This text font color is #88FF6A.
.myBgColor { background-color: #88FF6A; }
<div style="background-color:#88FF6A">Inner text</div>
This div background color is #88FF6A.
.myBorderColor { border: 1px solid #88FF6A; }
<div style="border:3px solid #88FF6A">Div</div>
This div border color is #88FF6A.
.myOpacity80 { color: #88FF6A; opacity: 0.8; }
<p style="color:#88FF6A;opacity:0.8;">80%</p>
Text with #88FF6A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88FF6A;}
<p style="text-shadow: 3px 3px 1px #88FF6A">Text here.</p>
This text has shadow with #88FF6A color.
.textShadow {text-shadow: 3px 3px 1px #88FF6A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88FF6A, 5px 5px 20px red">Text here.</p>
This text has shadow with #88FF6A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88FF6A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88FF6A, Direction=45, Strength=4)">Text</p>
This text has shadow with #88FF6A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88FF6A; -webkit-box-shadow: 1px 1px 3px 2px #88FF6A; box-shadow: 1px 1px 3px 2px #88FF6A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88FF6A; -webkit-box-shadow: 1px 1px 3px 2px #88FF6A; box-shadow:1px 1px 3px 2px #88FF6A;">
Div content here</div>
This text has color #88FF6A on black background.
This text has color #88FF6A on white background.
This text has black color on #88FF6A background.
This text has white color on #88FF6A background.