703C15 : Hex Color Code
Color-Conversion
The hexadecimal value of the color #703c15 is made up of the RGB values of (112 ,60 ,21) . The red value is 112, the green value is 60, and the blue value is 21. This color has a hue of 25, saturation of 68, and a lightness value of26 when represented in HSL. In four color CMYK, the color has a process value of 0, 46, 81, and 56. The web safe color of #703c15 is #6f3b15. Overall, the color #703c15 is predominantly gray.
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
#703C15
#643513
#572F10
#4B280E
#3E210C
#321B09
#251407
#190D05
#0C0702
#000000
Tints
#703C15
#80522F
#906749
#A07D63
#B0937D
#BFA897
#CFBEB1
#DFD4CB
#EFE9E5
#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
#6F3B15
#154A6F
Color Split Complementary
#6F3B15
#156F68
Color Triadic
#6F3B15
#156F3B
#3B156F
Color Analogous
#6F3B15
#6F6815
#4A6F15
Color Monochromatic
#6F3B15
#934D1C
#B66023
#D7732C
#DD8A4F
#E4A272
#EBB995
#F2D0B9
#F8E8DC
Color Preview
Developer
Tailwind
//tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'gray': '#703c15',
},
}
},
}
//tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'gray': {
100: '#dd8a4f',
200: '#d7732c',
300: '#b66023',
400: '#934d1c',
500: '#6f3b15',
600: '#703c15',
700: '#643513',
800: '#572f10',
900: '#4b280e',
},
},
}
},
}
CSS
//global.css
.mybgcolor {background-color:#703c15; }
.myforecolor {color:#703c15; }
.mybordercolor {border:3px solid #703c15;}
//index.html
<p style="color:#703c15;">Text here</p>
//index.html
<div style="background-color:#703c15;">content here</div>
//index.html
<div style="border: 2px solid #703c15;">content here</div>
//index.html
<p style="text-shadow: 4px 4px 2px #703c15">Text here</p>
//index.html
<div style="-moz-box-shadow: 1px 1px 3px 2px #703c15;
-webkit-box-shadow: 1px 1px 3px 2px #703c15;
box-shadow: 1px 1px 3px 2px #703c15;">
Content here</div>