8 more blending modes added: multiply, screen, overlay, hardlight, difference, exclusion, average & negation.

This commit is contained in:
Rubens Mariuzzo
2012-01-25 00:58:20 -04:00
committed by Luke Page
parent 6e97b8f694
commit 0a5245b2c3
3 changed files with 64 additions and 0 deletions

View File

@@ -79,5 +79,13 @@
}
#blendmodes {
multiply: multiply(#f60000, #f60000);
screen: screen(#f60000, #0000f6);
overlay: overlay(#f60000, #0000f6);
softlight: softlight(#f60000, #ffffff);
hardlight: hardlight(#f60000, #0000f6);
difference: difference(#f60000, #0000f6);
exclusion: exclusion(#f60000, #0000f6);
average: average(#f60000, #0000f6);
negation: negation(#f60000, #313131);
}