Mixing Background Colors

We will use interacting color to divide space without introducing additional graphic features.

Choose colors for rows and columns by editing the css style of each table data item. picker

column 1 column 2 column 3 column 4
row 1 row 2 row 3

Here we read the colors above and compute how they interact as if they are color filters layered over each other at every row and column.

pages/mixing-background-colors

For each rgb component i we compute a reduced percentage of max value 256. github

Math.round(row[i]/256 * col[i]/256 * 256))

Jiggle this Frame to re-read colors.

http://ward.dojo.fed.wiki/assets/pages/mixing-background-colors/table.html HEIGHT 0

See Transmission Color Model for recent generation.