Question

we are developing a website cms in C# and want to integrate / develop a small and simple color scheme generator as like as colorschemedesigner.com (of course simplier) to automatically suggest harmonizing template colors (for body background, text, heading etc.).

There are 6 methods for color creation on that website. We would like to reprogram the logic of the "accented analogic" algorithm.

Does anyone know how to easily realize this, or where we could find more information about this topic. How to programatically find a set of harmonizing colors for a given base?

Or are there already some third-party controls out there that could do the job? E.g. an advanced advanced advanced color picker or some thing.

Daniel

Was it helpful?

Solution

Adobe's Kuler is pretty good at this. If you want to look at the theory that governs how Kuler creates colour schemes you can look at examples like this on colour theory.

analogous colour scheme creation

You could begin by creating a colourwheel then using the scheme definitions in this link -- or others -- to work out which colours to choose based on their position on the wheel (e.g. the analogous scheme above).

OTHER TIPS

I found this useful in the past. Random Pastel Colour Generator

Code in c# can be found on the page above.

alt text

alt text

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top