1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-19 17:52:45 +02:00

adjust chart color names so that they all have numbers (#10530)

This makes it easier to add more variation of each of the non-A colors
later too.
This commit is contained in:
Thomas Heartman 2025-08-25 14:31:24 +02:00 committed by GitHub
parent 0223437f49
commit 434ed4cf63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 12 deletions

View File

@ -225,10 +225,10 @@ const theme = {
A3: '#ADA9F1',
A4: '#CECCF6',
A5: '#F1F0FC',
B: '#1791AE',
C: '#DF416E',
D: '#D76500',
E: '#68A611',
B1: '#1791AE',
C1: '#DF416E',
D1: '#D76500',
E1: '#68A611',
series: colors.chartSeries,
},
},

View File

@ -281,10 +281,10 @@ const theme = {
A3: '#ADA9F1',
A4: '#CECCF6',
A5: '#F1F0FC',
B: '#1791AE',
C: '#DF416E',
D: '#D76500',
E: '#68A611',
B1: '#1791AE',
C1: '#DF416E',
D1: '#D76500',
E1: '#68A611',
series: colors.chartSeries,
},
},

View File

@ -143,10 +143,10 @@ declare module '@mui/material/styles' {
A3: string;
A4: string;
A5: string;
B: string;
C: string;
D: string;
E: string;
B1: string;
C1: string;
D1: string;
E1: string;
series: string[];
};
}