/* anything related to the light theme */
html[data-theme="light"] {

    /* whatever you want to change */
    --pst-color-primary: green;

  --pst-color-background: #F5FFF6;
  --pst-color-on-background: #ECFFEE;
  --pst-color-surface: #CDE5CF;
  --pst-color-on-surface: #DBFFDF;

}

/* anything related to the dark theme */
html[data-theme="dark"] {

    /* whatever you want to change */
    --pst-color-primary: #00AC00;

  --pst-color-background: #091209;
  --pst-color-on-background: #202921;
  --pst-color-surface: #111C12;
  --pst-color-on-surface: #04430A;

}