Skip to content

Instantly share code, notes, and snippets.

View JoachimR's full-sized avatar

Joachim Reiß JoachimR

  • https://bryter.com
  • Germany
View GitHub Profile
@Megabytemb
Megabytemb / app.js
Created September 3, 2015 02:24
Using Angular Material theme colors on any element
var app = angular.module('DashboardApp', ['ngMaterial']);
var _theme;
app.config(function ( $mdThemingProvider) {
$mdThemingProvider
.theme('default')
.accentPalette('orange')
.dark();
_theme = $mdThemingProvider.theme();