mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 05:10:45 +00:00
CE-740 Add blueGray and grayLines colors
This commit is contained in:
@ -79,11 +79,18 @@ interface Types
|
|||||||
main: string;
|
main: string;
|
||||||
focus: string;
|
focus: string;
|
||||||
}
|
}
|
||||||
|
blueGray:
|
||||||
|
| {
|
||||||
|
main: string;
|
||||||
|
}
|
||||||
gray:
|
gray:
|
||||||
| {
|
| {
|
||||||
light: string;
|
|
||||||
main: string;
|
main: string;
|
||||||
focus: string;
|
focus: string;
|
||||||
|
}
|
||||||
|
grayLines:
|
||||||
|
| {
|
||||||
|
main: string;
|
||||||
}
|
}
|
||||||
| any;
|
| any;
|
||||||
primary: ColorsTypes | any;
|
primary: ColorsTypes | any;
|
||||||
@ -180,11 +187,19 @@ const colors: Types = {
|
|||||||
focus: "#ffffff",
|
focus: "#ffffff",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
blueGray: {
|
||||||
|
main: "#546E7A"
|
||||||
|
},
|
||||||
|
|
||||||
gray: {
|
gray: {
|
||||||
main: "#757575",
|
main: "#757575",
|
||||||
focus: "#757575",
|
focus: "#757575",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
grayLines: {
|
||||||
|
main: "#D6D6D6"
|
||||||
|
},
|
||||||
|
|
||||||
black: {
|
black: {
|
||||||
light: "#000000",
|
light: "#000000",
|
||||||
main: "#000000",
|
main: "#000000",
|
||||||
|
Reference in New Issue
Block a user