Skip to content

Instantly share code, notes, and snippets.

View danillobarbosa's full-sized avatar
💭
I may be slow to respond.

danillobarbosa

💭
I may be slow to respond.
View GitHub Profile
@danillobarbosa
danillobarbosa / mdxUtil.js
Created May 1, 2016 16:43 — forked from Todd-Werelius/mdxUtil.js
Angular Material Directive to Access Theme Colors
(function() {
angular.module('mdxUtil', ['ngMaterial'])
.directive('mdxPaintFg',function(mdx) {
"use strict";
return {
restrict : 'A',
link : function(scope, element, attributes) {
setRGB(element,'color',mdx.mdxThemeColors,attributes.mdxPaintFg,'mdx-paint-fg');
}