HuuuugePony commented on issue #37673:
URL: https://github.com/apache/superset/issues/37673#issuecomment-4094981930

   Regarding the faded color issue, I attempted to modify the 
resolvedColorScheme definition in the file
   
`apache_superset-6.0.0rc4\superset-frontend\packages\superset-ui-chart-controls\src\utils\getcolorformatters.ts`
   Changed from:
   ```
   resolvedColorScheme = theme[config.colorScheme] as string;
   ```
   To:
   ```
   const solidColorKey = config.colorScheme.replace('Bg', '');
   resolvedColorScheme = theme[solidColorKey] || theme[config.colorScheme];
   ```
   After recompiling, the faded color issue was resolved. Hope this helps!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to