Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Last active June 11, 2018 08:41
Show Gist options
  • Save realtomaszkula/6f5478e7c3d5962eb5e51b37ada982a8 to your computer and use it in GitHub Desktop.
Save realtomaszkula/6f5478e7c3d5962eb5e51b37ada982a8 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-root',
template: `
<app-card></app-card>
<button (click)="theme = indigoPinkTheme">Indigo Pink</button>
<button (click)="theme = pinkBlueGrayTheme">Pink BlueGray</button>
<button (click)="theme = deepPurpleAmberTheme">Deep Purple Amber</button>
<button (click)="theme = randomTheme()">?</button>
`,
})
export class AppComponent {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment