How can I create a button that toggles between light and dark mode when clicked, changing the background color and font color accordingly? I need to add CSS classes .bgdark and .textlight to the 'mainbody' for dark mode.
HTML
<div class="mainbody">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
TS
export class AppComponent {
title = 'salesapp';
ngOnInit(){
}
}