HEX: #48D1CC
RGB: (72,209,204)
Color name is MediumTurquoise. #48D1CC contains mainly green and blue colors. Web safe color of #48D1CC is #33CCCC (or #3CC).
#48D1CC color RGB value is (72,209,204).
RGB: (72,209,204) (28%,82%,80%)
R 72 of 255 = 28%
G 209 of 255 = 82%
B 204 of 255 = 80%
R + G + B ~ 63%. #48D1CC is quite light color.
R + G + B =
72 + 209 + 204 = 485 (100%)
R 72 of 485 ~ 14.85%
G 209 of 485 ~ 43.09%
B 204 of 485 ~ 42.06%
#48D1CC color CMYK value is (66,0,2,18).
CMYK: (66,0,2,18) C66M0Y2K18 (66%,0%,2%,18%) (0.66/0.00/0.02/0.18)
48 | D1 | CC | |
---|---|---|---|
RGB | 72 | 209 | 204 |
HSL | 178° | 59.83% | 55.10% |
HSB/HSV | 178° | 65.55% | 81.96% |
CMYK | 65.55% | 0.00% | 2.39% |
18.04% |
HEX | 48 | D1 | CC |
Decimal | 72 | 209 | 204 |
Binary | 1001000 | 11010001 | 11001100 |
Octal | 110 | 321 | 314 |
Examples of css and html codes for elements with #48D1CC color. Also use rgb(72,209,204) instead hex code.
.myTextColor { color: #48D1CC; }
<p style="color:#48D1CC">This sample text font color is #48D1CC.</p>
This text font color is #48D1CC.
.myBgColor { background-color: #48D1CC; }
<div style="background-color:#48D1CC">Inner text</div>
This div background color is #48D1CC.
.myBorderColor { border: 1px solid #48D1CC; }
<div style="border:3px solid #48D1CC">Div</div>
This div border color is #48D1CC.
.myOpacity80 { color: #48D1CC; opacity: 0.8; }
<p style="color:#48D1CC;opacity:0.8;">80%</p>
Text with #48D1CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48D1CC;}
<p style="text-shadow: 3px 3px 1px #48D1CC">Text here.</p>
This text has shadow with #48D1CC color.
.textShadow {text-shadow: 3px 3px 1px #48D1CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48D1CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #48D1CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48D1CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48D1CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #48D1CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48D1CC; -webkit-box-shadow: 1px 1px 3px 2px #48D1CC; box-shadow: 1px 1px 3px 2px #48D1CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48D1CC; -webkit-box-shadow: 1px 1px 3px 2px #48D1CC; box-shadow:1px 1px 3px 2px #48D1CC;">
Div content here</div>
This text has color #48D1CC on black background.
This text has color #48D1CC on white background.
This text has black color on #48D1CC background.
This text has white color on #48D1CC background.