/* Motion — the desktop app is a real-time video tool and animates almost
   nothing: state changes are instant re-polishes. Web recreations should
   stay equally restrained; these are the only sanctioned durations. */
:root{
  --dur-instant:0ms; /* @kind other */    /* Qt state repolish — hover/press/checked */
  --dur-fast:120ms; /* @kind other */     /* web-only: hover colour cross-fade */
  --dur-loop-pause:500ms; /* @kind other */ /* pause between replay loops */
  --ease-standard:linear; /* @kind other */
  --transition-hover:background-color var(--dur-fast) linear,border-color var(--dur-fast) linear,color var(--dur-fast) linear; /* @kind other */
}
