Theme not updating status bar in Android

I looked for another thread about this, but couldn’t find anyting, so I must be missing something here. On Android, usually the status bar color updates to match the primary color of a theme, but that doesn’t seem to be happening anymore. I noticed this after upgrading to Android 10, not sure if there is a tag that is missing now, or if there is something else going on. Here’s an example, notice the status bar is blue (default theme) but the primary color is green. My theme is also below.

Dark - Green & Gray:
  ### Main Interface Colors ###
  primary-color: "#87BF50"
  light-primary-color: "#C5C5C5"
  primary-background-color: "#494B58"
  secondary-background-color: var(--primary-background-color)
  divider-color: "#343434"
  accent-color: var(--primary-background-color)
  ### Text ###
  primary-text-color: "#FFFFFD"
  secondary-text-color: "#87BF50"
  text-primary-color: "#FFFFFF"
  disabled-text-color: "#A3A3A3"
  ### Sidebar Menu ###
  sidebar-icon-color: "#A3A3A3"
  sidebar-text-color: "#FFFFFD"
  sidebar-selected-background-color: var(--primary-background-color)
  sidebar-selected-icon-color: "#87BF50"
  sidebar-selected-text-color: var(--sidebar-selected-icon-color)
  ### States and Badges ###
  state-icon-color: "#87BF50"
  state-icon-active-color: "#F7AA1C"
  state-icon-unavailable-color: var(--disabled-text-color)
  ### Sliders ###
  paper-slider-knob-color: "#87BF50"
  paper-slider-knob-start-color: var(--paper-slider-knob-color)
  paper-slider-pin-color: var(--paper-slider-knob-color)
  paper-slider-active-color: var(--paper-slider-knob-color)
  paper-slider-secondary-color: var(--light-primary-color)
  ### Labels ###
  label-badge-background-color: "#575757"
  label-badge-text-color: "#FFFFFD"
  label-badge-red: "#87BF50"
  ### Cards ###
  paper-card-background-color: var(--primary-background-color)
  paper-listbox-background-color: var(--primary-background-color)
  card-background-color: var(--paper-card-background-color)
  ### Toggles ###
  paper-toggle-button-checked-button-color: "#87BF50"
  paper-toggle-button-checked-bar-color: "#598330"
  paper-toggle-button-unchecked-button-color: "#A3A3A3"
  paper-toggle-button-unchecked-bar-color: "#6F6F6F"
  ### Table row ###
  table-row-background-color: var(--primary-background-color)
  table-row-alternative-background-color: var(--secondary-background-color)
1 Like

Still have not had any luck with this even after making a bunch of tweaks to my theme. I’ve also learned a little more info about the issue:

  1. It doesn’t matter what theme I use, the issue always occurs
  2. This is related to dark mode in Chrome on Android 10, if you switch Chrome to light mode, then this doesn’t happen

I’m not sure if something is wrong in the theme, or if this is a bug in Home Assistant or possibly Chrome. If anyone has any input, I would greatly appreciate any help I can get. Thank you!