Skip to content

Instantly share code, notes, and snippets.

@robertnsharp
robertnsharp / gist:49fd46a071a267d9e5dd
Created July 4, 2015 05:21
Javascript - Generate pastel colour from string
//magic to convert strings to a nice pastel colour based on first two chars
//
// every string with the same first two chars will generate the same pastel colour
function pastel_colour(input_str) {
//TODO: adjust base colour values below based on theme
var baseRed = 128;
var baseGreen = 128;
var baseBlue = 128;