1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-01 13:47:27 +02:00

Add chart colors to colors definitions (#10521)

Adds new chart colors to the theme definitions: A1 through A5, and B
through E.
This commit is contained in:
Thomas Heartman 2025-08-22 14:56:41 +02:00 committed by GitHub
parent 9d18b0022b
commit d76b676fb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 27 additions and 0 deletions

View File

@ -220,6 +220,15 @@ const theme = {
* Dashboard and charts
*/
charts: {
A1: '#6C65E5',
A2: '#8C87EB',
A3: '#ADA9F1',
A4: '#CECCF6',
A5: '#F1F0FC',
B: '#1791AE',
C: '#DF416E',
D: '#D76500',
E: '#68A611',
series: colors.chartSeries,
},
},

View File

@ -276,6 +276,15 @@ const theme = {
* Dashboard and charts
*/
charts: {
A1: '#6C65E5',
A2: '#8C87EB',
A3: '#ADA9F1',
A4: '#CECCF6',
A5: '#F1F0FC',
B: '#1791AE',
C: '#DF416E',
D: '#D76500',
E: '#68A611',
series: colors.chartSeries,
},
},

View File

@ -138,6 +138,15 @@ declare module '@mui/material/styles' {
* Dashboard and charts
*/
charts: {
A1: string;
A2: string;
A3: string;
A4: string;
A5: string;
B: string;
C: string;
D: string;
E: string;
series: string[];
};
}