updated site file
This commit is contained in:
parent
feabd268fc
commit
47e25571fd
|
@ -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 <code>md-hue-1</code> class
|
||||
'hue-2': '600', // use shade 600 for the <code>md-hue-2</code> class
|
||||
'hue-3': 'A100' // use shade A100 for the <code>md-hue-3</code> 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
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue