Skip to content

Instantly share code, notes, and snippets.

View andrespagella's full-sized avatar

M. Andres Pagella andrespagella

  • Buenos Aires, Argentina
View GitHub Profile
@andrespagella
andrespagella / Custom.css
Created October 29, 2012 15:22
IR_Dark_Monokai
/**********************************************/
/*
/* 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
@andrespagella
andrespagella / gist:3806386
Created September 30, 2012 10:12
CSS Custom Filter (a fragment shader) is not working
/* 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);