lit-litelements 2.2.1 → 2.2.3

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.
@@ -275,7 +275,7 @@ let ChartElement = class ChartElement extends LitElement {
275
275
  if (typeof label === 'string') {
276
276
  const labelDate = new Date(label).toISOString().split("T")[0];
277
277
  const todayStr = new Date().toISOString().split("T")[0];
278
- return labelDate === todayStr ? "red" : "black";
278
+ return labelDate === todayStr ? "Salmon" : "black";
279
279
  }
280
280
  return "black"; // default fallback
281
281
  }