HEX: #388E7D
RGB: (56,142,125)
#388E7D contains mainly green and blue colors. Web safe color of #388E7D is #339966 (or #396).
#388E7D color RGB value is (56,142,125).
RGB: (56,142,125) (22%,56%,49%)
R 56 of 255 = 22%
G 142 of 255 = 56%
B 125 of 255 = 49%
R + G + B ~ 42%. #388E7D is middle color (not dark and not light).
R + G + B =
56 + 142 + 125 = 323 (100%)
R 56 of 323 ~ 17.34%
G 142 of 323 ~ 43.96%
B 125 of 323 ~ 38.7%
#388E7D color CMYK value is (61,0,12,44).
CMYK: (61,0,12,44) C61M0Y12K44 (61%,0%,12%,44%) (0.61/0.00/0.12/0.44)
38 | 8E | 7D | |
---|---|---|---|
RGB | 56 | 142 | 125 |
HSL | 168° | 43.43% | 38.82% |
HSB/HSV | 168° | 60.56% | 55.69% |
CMYK | 60.56% | 0.00% | 11.97% |
44.31% |
HEX | 38 | 8E | 7D |
Decimal | 56 | 142 | 125 |
Binary | 111000 | 10001110 | 1111101 |
Octal | 70 | 216 | 175 |
Examples of css and html codes for elements with #388E7D color. Also use rgb(56,142,125) instead hex code.
.myTextColor { color: #388E7D; }
<p style="color:#388E7D">This sample text font color is #388E7D.</p>
This text font color is #388E7D.
.myBgColor { background-color: #388E7D; }
<div style="background-color:#388E7D">Inner text</div>
This div background color is #388E7D.
.myBorderColor { border: 1px solid #388E7D; }
<div style="border:3px solid #388E7D">Div</div>
This div border color is #388E7D.
.myOpacity80 { color: #388E7D; opacity: 0.8; }
<p style="color:#388E7D;opacity:0.8;">80%</p>
Text with #388E7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #388E7D;}
<p style="text-shadow: 3px 3px 1px #388E7D">Text here.</p>
This text has shadow with #388E7D color.
.textShadow {text-shadow: 3px 3px 1px #388E7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #388E7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #388E7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#388E7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#388E7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #388E7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #388E7D; -webkit-box-shadow: 1px 1px 3px 2px #388E7D; box-shadow: 1px 1px 3px 2px #388E7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #388E7D; -webkit-box-shadow: 1px 1px 3px 2px #388E7D; box-shadow:1px 1px 3px 2px #388E7D;">
Div content here</div>
This text has color #388E7D on black background.
This text has color #388E7D on white background.
This text has black color on #388E7D background.
This text has white color on #388E7D background.