Here is the idea of what I hope final product would do. Say I have two inputs:
<form id="builder"/>
<input type="text" name="background_color" />
<input type="text" name="border_color" />
</form>
Let's say user inputs this Hex color code in "background_color" input: #FF8CA9
(Light pink color). I want to automatically add darker tone of this color Hex code in "border_color" input: say #D63E64
(dark pink color).
So is it possible to 1) Find darker tone of color that was entered in input "background_color" and generate Hex color code of it and 2) automatically place it in input "border_color" without page refresh?
I'm not sure how to explain this in other way, I know it might sound confusing, but if you don't understand some parts please ask me.
Additional info: if this needs to use sort of javascript, a jQuery solution is preferable.