@fixefy/fixefy-ui-utils 0.2.50 → 0.2.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -131,6 +131,17 @@ declare module '@mui/material/styles' {
|
|
|
131
131
|
blue1Focused: string;
|
|
132
132
|
purple: string;
|
|
133
133
|
lightPurple: string;
|
|
134
|
+
silver: string;
|
|
135
|
+
silverPlatinum: string;
|
|
136
|
+
silverSand: string;
|
|
137
|
+
jetBlack: string;
|
|
138
|
+
gainsboro: string;
|
|
139
|
+
black: string;
|
|
140
|
+
gray_54: string;
|
|
141
|
+
azure: string;
|
|
142
|
+
aliceBlue: string;
|
|
143
|
+
lightGray: string;
|
|
144
|
+
charcoal: string;
|
|
134
145
|
}
|
|
135
146
|
interface PriorityPalleteColorOptions {
|
|
136
147
|
critical: string;
|
|
@@ -101,7 +101,18 @@ const theme = (0, _styles.createTheme)({
|
|
|
101
101
|
blue1Hover: '#39B8EC',
|
|
102
102
|
blue1Focused: '#1DA3E6',
|
|
103
103
|
purple: '#BB6BD9',
|
|
104
|
-
lightPurple: '#FBF6FD'
|
|
104
|
+
lightPurple: '#FBF6FD',
|
|
105
|
+
silver: '#C5C5C5',
|
|
106
|
+
silverPlatinum: '#E3E4E4',
|
|
107
|
+
silverSand: '#C6C7C8',
|
|
108
|
+
jetBlack: '#303030',
|
|
109
|
+
gainsboro: '#D0D0D0',
|
|
110
|
+
black: '#000000',
|
|
111
|
+
gray_54: '#8A8A8A',
|
|
112
|
+
azure: '#FAFCFC',
|
|
113
|
+
aliceBlue: '#F6F9FA',
|
|
114
|
+
lightGray: '#FCFCFB',
|
|
115
|
+
charcoal: '#2B2B2B'
|
|
105
116
|
},
|
|
106
117
|
greyscale: {
|
|
107
118
|
dark: '#636363',
|
package/package.json
CHANGED