fix: text color in sales funnel report based on theme

This commit is contained in:
ljain112
2024-08-12 17:09:39 +05:30
parent deccb007c1
commit 61bc0925d5

View File

@@ -248,7 +248,7 @@ erpnext.SalesFunnel = class SalesFunnel {
context.fill();
// draw text
context.fillStyle = "black";
context.fillStyle = getComputedStyle(document.body).getPropertyValue("--text-color");
context.textBaseline = "middle";
context.font = "1.1em sans-serif";
context.fillText(__(title), width + 20, y_mid);