From 47e25571fd166c7b81e16639eac1427eefc3f3fe Mon Sep 17 00:00:00 2001 From: Alex Wolfe Date: Fri, 1 May 2015 06:49:07 -0700 Subject: [PATCH] updated site file --- public/resources/js/site.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 public/resources/js/site.js diff --git a/public/resources/js/site.js b/public/resources/js/site.js new file mode 100644 index 0000000000..6306072d0b --- /dev/null +++ b/public/resources/js/site.js @@ -0,0 +1,22 @@ +/* +* Apllication Module +* +*/ + +var angularIO = angular.module('angularIOApp', ['ngMaterial', 'ngTouch']) +.config(function($mdThemingProvider) { + + // THEMEING FOR ANGULAR MATERIAL + $mdThemingProvider.theme('default') + .primaryPalette('blue', { + 'default': '700', // by default use shade 400 from the pink palette for primary intentions + 'hue-1': '100', // use shade 100 for the md-hue-1 class + 'hue-2': '600', // use shade 600 for the md-hue-2 class + 'hue-3': 'A100' // use shade A100 for the md-hue-3 class + }) + // If you specify less than all of the keys, it will inherit from the + // default shades + .accentPalette('purple', { + 'default': '200' // use shade 200 for default, and keep all other shades the same + }); +}); \ No newline at end of file