Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Last active June 11, 2018 08:33
Show Gist options
  • Save realtomaszkula/7e4093a2cbf428dce298a3c6c9bd88c3 to your computer and use it in GitHub Desktop.
Save realtomaszkula/7e4093a2cbf428dce298a3c6c9bd88c3 to your computer and use it in GitHub Desktop.
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