HEX: #80D480
RGB: (128,212,128)
#80D480 contains mainly green color. Web safe color of #80D480 is #66CC66 (or #6C6).
#80D480 color RGB value is (128,212,128).
RGB: (128,212,128) (50%,83%,50%)
R 128 of 255 = 50%
G 212 of 255 = 83%
B 128 of 255 = 50%
R + G + B ~ 61%. #80D480 is quite light color.
R + G + B =
128 + 212 + 128 = 468 (100%)
R 128 of 468 ~ 27.35%
G 212 of 468 ~ 45.3%
B 128 of 468 ~ 27.35%
#80D480 color CMYK value is (40,0,40,17).
CMYK: (40,0,40,17) C40M0Y40K17 (40%,0%,40%,17%) (0.40/0.00/0.40/0.17)
80 | D4 | 80 | |
---|---|---|---|
RGB | 128 | 212 | 128 |
HSL | 120° | 49.41% | 66.67% |
HSB/HSV | 120° | 39.62% | 83.14% |
CMYK | 39.62% | 0.00% | 39.62% |
16.86% |
HEX | 80 | D4 | 80 |
Decimal | 128 | 212 | 128 |
Binary | 10000000 | 11010100 | 10000000 |
Octal | 200 | 324 | 200 |
Examples of css and html codes for elements with #80D480 color. Also use rgb(128,212,128) instead hex code.
.myTextColor { color: #80D480; }
<p style="color:#80D480">This sample text font color is #80D480.</p>
This text font color is #80D480.
.myBgColor { background-color: #80D480; }
<div style="background-color:#80D480">Inner text</div>
This div background color is #80D480.
.myBorderColor { border: 1px solid #80D480; }
<div style="border:3px solid #80D480">Div</div>
This div border color is #80D480.
.myOpacity80 { color: #80D480; opacity: 0.8; }
<p style="color:#80D480;opacity:0.8;">80%</p>
Text with #80D480 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #80D480;}
<p style="text-shadow: 3px 3px 1px #80D480">Text here.</p>
This text has shadow with #80D480 color.
.textShadow {text-shadow: 3px 3px 1px #80D480, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #80D480, 5px 5px 20px red">Text here.</p>
This text has shadow with #80D480 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#80D480, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#80D480, Direction=45, Strength=4)">Text</p>
This text has shadow with #80D480 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #80D480; -webkit-box-shadow: 1px 1px 3px 2px #80D480; box-shadow: 1px 1px 3px 2px #80D480; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #80D480; -webkit-box-shadow: 1px 1px 3px 2px #80D480; box-shadow:1px 1px 3px 2px #80D480;">
Div content here</div>
This text has color #80D480 on black background.
This text has color #80D480 on white background.
This text has black color on #80D480 background.
This text has white color on #80D480 background.