C14E63 : Hex Color Code
Color-Conversion
The hexadecimal value of the color #c14e63 is made up of the RGB values of (193 ,78 ,99) . The red value is 193, the green value is 78, and the blue value is 99. This color has a hue of -10, saturation of 48, and a lightness value of53 when represented in HSL. In four color CMYK, the color has a process value of 0, 60, 49, and 24. The web safe color of #c14e63 is #c14e61. Overall, the color #c14e63 is predominantly brown.
Variations
This section aims to generate accurate tints (created by adding pure white) and shades (created by adding pure black) of the chosen color in increments of 10%.
Shaders
#C14E63
#AC4558
#963D4D
#813442
#6B2B37
#56232C
#401A21
#2B1116
#15090B
#000000
Tints
#C14E63
#C86274
#CF7586
#D68997
#DD9DA8
#E3B0BA
#EAC4CB
#F1D8DC
#F8EBEE
#FFFFFF
Color Combinations
Different color harmonies can evoke different moods, and it can be helpful to use them as a starting point for brainstorming color combinations. By exploring different color harmonies, you can identify colors that work well together and create a cohesive color palette for your project.
Color Complementary
#C14E61
#4EC1AE
Color Split Complementary
#C14E61
#4EC174
Color Triadic
#C14E61
#61C14E
#4E61C1
Color Analogous
#C14E61
#C1744E
#C1AE4E
Color Monochromatic
#C14E61
#C86172
#CF7584
#D58996
#DC9CA7
#E3B0B9
#EAC4CA
#F1D8DC
#F8EBED
Color Preview
Developer
Tailwind
//tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'brown': '#c14e63',
},
}
},
}
//tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'brown': {
100: '#dc9ca7',
200: '#d58996',
300: '#cf7584',
400: '#c86172',
500: '#c14e61',
600: '#c14e63',
700: '#ac4558',
800: '#963d4d',
900: '#813442',
},
},
}
},
}
CSS
//global.css
.mybgcolor {background-color:#c14e63; }
.myforecolor {color:#c14e63; }
.mybordercolor {border:3px solid #c14e63;}
//index.html
<p style="color:#c14e63;">Text here</p>
//index.html
<div style="background-color:#c14e63;">content here</div>
//index.html
<div style="border: 2px solid #c14e63;">content here</div>
//index.html
<p style="text-shadow: 4px 4px 2px #c14e63">Text here</p>
//index.html
<div style="-moz-box-shadow: 1px 1px 3px 2px #c14e63;
-webkit-box-shadow: 1px 1px 3px 2px #c14e63;
box-shadow: 1px 1px 3px 2px #c14e63;">
Content here</div>