Last active
June 11, 2018 08:33
-
-
Save realtomaszkula/7e4093a2cbf428dce298a3c6c9bd88c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Theme { | |
primary: string; | |
accent: string; | |
} | |
@Component({ | |
selector: 'app-root', | |
template: `<app-card></app-card>`, | |
}) | |
export class AppComponent { | |
readonly indigoPinkTheme: Theme = { | |
primary: '#5c6bc0', | |
accent: '#ec407a' | |
}; | |
readonly pinkBlueGrayTheme: Theme = { | |
primary: '#ec407a', | |
accent: '#90a4ae' | |
}; | |
readonly deepPurpleAmberTheme: Theme = { | |
primary: '#7e57c2', | |
accent: '#ffca28' | |
}; | |
theme: Theme = this.indigoPinkTheme; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment