This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* redtint.fs */ | |
precision mediump float; | |
void main() | |
{ | |
css_ColorMatrix = mat4(1.0, 0.0, 0.0, 0.0, | |
0.0, 0.0, 0.0, 0.0, | |
0.0, 0.0, 0.0, 0.0, | |
0.0, 0.0, 0.0, 1.0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**********************************************/ | |
/* | |
/* IR_Dark_Monokai | |
/* Designed and developed by Andres Pagella (@mapagella) | |
/* http://www.andrespagella.com/customising-chrome-devtools | |
/* | |
/* Based on Ben Truyman's IR_Black | |
/* which is... | |
/* Based on Todd Werth's IR_Black: | |
/* http://blog.toddwerth.com/entries/2 |