calendar-simple 2.0.0-beta.1 → 2.0.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -365,13 +365,13 @@ interface CalendarClassNames {
365
365
  <Calendar colorScheme="light" />
366
366
  ```
367
367
 
368
- Override individual CSS custom properties for fine-grained control:
368
+ Override individual CSS custom properties for fine-grained control. Light is the `:root` default; dark values live under `[data-color-scheme="dark"]`:
369
369
 
370
370
  ```css
371
371
  [data-color-scheme="dark"] {
372
- --primary-bg: #1a1a1a;
373
- --primary-text: #ffffff;
374
- --accent-color: #818cf8;
372
+ --bg-color: #1a1a1a;
373
+ --text-primary: #ffffff;
374
+ --primary-color: #818cf8;
375
375
  }
376
376
  ```
377
377