| 12345678910111213141516171819 |
- :root {
- /* App Variables */
- --app-primary-color: #ff9900;
- --app-secondary-color: #e6a23c;
- --app-bg-color: #f7f8fa;
- --app-text-color: #323233;
- }
- body {
- background-color: var(--app-bg-color);
- color: var(--app-text-color);
- transition: background-color 0.3s, color 0.3s;
- }
- /* Dark Mode Defaults */
- .dark body {
- --van-background: #1a1a1a;
- --van-text-color: #f5f5f5;
- }
|