HEX: #83E63B
RGB: (131,230,59)
#83E63B contains mainly green color. Web safe color of #83E63B is #99CC33 (or #9C3).
#83E63B color RGB value is (131,230,59).
RGB: (131,230,59) (51%,90%,23%)
R 131 of 255 = 51%
G 230 of 255 = 90%
B 59 of 255 = 23%
R + G + B ~ 55%. #83E63B is middle color (not dark and not light).
R + G + B =
131 + 230 + 59 = 420 (100%)
R 131 of 420 ~ 31.19%
G 230 of 420 ~ 54.76%
B 59 of 420 ~ 14.05%
#83E63B color CMYK value is (43,0,74,10).
CMYK: (43,0,74,10) C43M0Y74K10 (43%,0%,74%,10%) (0.43/0.00/0.74/0.10)
83 | E6 | 3B | |
---|---|---|---|
RGB | 131 | 230 | 59 |
HSL | 95° | 77.38% | 56.67% |
HSB/HSV | 95° | 74.35% | 90.20% |
CMYK | 43.04% | 0.00% | 74.35% |
9.80% |
HEX | 83 | E6 | 3B |
Decimal | 131 | 230 | 59 |
Binary | 10000011 | 11100110 | 111011 |
Octal | 203 | 346 | 73 |
Examples of css and html codes for elements with #83E63B color. Also use rgb(131,230,59) instead hex code.
.myTextColor { color: #83E63B; }
<p style="color:#83E63B">This sample text font color is #83E63B.</p>
This text font color is #83E63B.
.myBgColor { background-color: #83E63B; }
<div style="background-color:#83E63B">Inner text</div>
This div background color is #83E63B.
.myBorderColor { border: 1px solid #83E63B; }
<div style="border:3px solid #83E63B">Div</div>
This div border color is #83E63B.
.myOpacity80 { color: #83E63B; opacity: 0.8; }
<p style="color:#83E63B;opacity:0.8;">80%</p>
Text with #83E63B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83E63B;}
<p style="text-shadow: 3px 3px 1px #83E63B">Text here.</p>
This text has shadow with #83E63B color.
.textShadow {text-shadow: 3px 3px 1px #83E63B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83E63B, 5px 5px 20px red">Text here.</p>
This text has shadow with #83E63B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83E63B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83E63B, Direction=45, Strength=4)">Text</p>
This text has shadow with #83E63B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83E63B; -webkit-box-shadow: 1px 1px 3px 2px #83E63B; box-shadow: 1px 1px 3px 2px #83E63B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83E63B; -webkit-box-shadow: 1px 1px 3px 2px #83E63B; box-shadow:1px 1px 3px 2px #83E63B;">
Div content here</div>
This text has color #83E63B on black background.
This text has color #83E63B on white background.
This text has black color on #83E63B background.
This text has white color on #83E63B background.