common.css 385 B

12345678910111213141516171819
  1. :root {
  2. /* App Variables */
  3. --app-primary-color: #ff9900;
  4. --app-secondary-color: #e6a23c;
  5. --app-bg-color: #f7f8fa;
  6. --app-text-color: #323233;
  7. }
  8. body {
  9. background-color: var(--app-bg-color);
  10. color: var(--app-text-color);
  11. transition: background-color 0.3s, color 0.3s;
  12. }
  13. /* Dark Mode Defaults */
  14. .dark body {
  15. --van-background: #1a1a1a;
  16. --van-text-color: #f5f5f5;
  17. }