-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular.js
More file actions
18 lines (16 loc) · 817 Bytes
/
angular.js
File metadata and controls
18 lines (16 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
angular.module('HomePage', ['ngMaterial'])
.controller('AppCtrl', function($scope) {
$scope.imagePath = 'img/washedout.png';
$scope.header = "Hi, I'm Dustin Downing!";
$scope.subHeader = "Full Stack Web Developer";
$scope.discription = "Freelance software developer in the Austin, TX area specializing in web applications for custom business solutions."
})
.config(function($mdThemingProvider) {
$mdThemingProvider.theme('default')
.primaryPalette('indigo')
.accentPalette('orange');
$mdThemingProvider.theme('dark-grey').backgroundPalette('grey').dark();
$mdThemingProvider.theme('dark-orange').backgroundPalette('orange').dark();
$mdThemingProvider.theme('dark-purple').backgroundPalette('deep-purple').dark();
$mdThemingProvider.theme('dark-blue').backgroundPalette('blue').dark();
});