2015-04-30 13:38:40 -07:00
|
|
|
import {Directive} from 'angular2/angular2';
|
2015-02-17 11:56:24 -08:00
|
|
|
|
2015-05-22 13:01:23 -07:00
|
|
|
@Directive({selector: '[md-theme]'})
|
2015-02-17 11:56:24 -08:00
|
|
|
export class MdTheme {
|
|
|
|
|
color: string;
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
|
this.color = 'sky-blue'
|
|
|
|
|
}
|
|
|
|
|
}
|