View on GitHub

Palette

Palette jQuery plugin

download .ZIPdownload .TGZ

palette.js

Quick Start

To get started, just add the palette js and css file to your page, and created textfield:

<link rel="stylesheet" href="palette.css">
<script src="palette.js"></script>
<script>
    $(document).ready(function()
        {
            $('#examplePalette').palette();
        }
    });
</script>

<input type="text" id="examplePalette" />