color hex code
by Ea Bangalore
HTML
<script src="http://blueimp.github.io/JavaScript-MD5/js/md5.js"></script>
<input type="text" />
CSS
input {
padding: 20px;
font-size: 20px;
}
JavaScript
function color(string) {
return '#' + md5(string).slice(0, 6);
}
$('input').on('keydown keyup', function() {
$(this).css('background-color', color($(this).val()));
});