get otherTheme()

in app/src/app/app.component.ts [78:83]


  get otherTheme() {
    const isLight = document.body.classList.contains("theme-light");
    return isLight
      ? "Dark"
      : "Light";
  }