@zesty-io/material 0.6.4 → 0.6.5
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.
- package/es/theme/palette.d.ts +2 -0
- package/es/theme/palette.js +22 -10
- package/package.json +1 -1
package/es/theme/palette.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ declare module '@mui/material/styles' {
|
|
|
9
9
|
blue: Color;
|
|
10
10
|
green: Color;
|
|
11
11
|
purple: Color;
|
|
12
|
+
yellow: Color;
|
|
12
13
|
}
|
|
13
14
|
interface PaletteOptions {
|
|
14
15
|
red?: Partial<Color>;
|
|
@@ -18,6 +19,7 @@ declare module '@mui/material/styles' {
|
|
|
18
19
|
blue?: Partial<Color>;
|
|
19
20
|
green?: Partial<Color>;
|
|
20
21
|
purple?: Partial<Color>;
|
|
22
|
+
yellow?: Partial<Color>;
|
|
21
23
|
border?: string;
|
|
22
24
|
}
|
|
23
25
|
}
|
package/es/theme/palette.js
CHANGED
|
@@ -115,16 +115,28 @@ const palette = {
|
|
|
115
115
|
900: '#054F31',
|
|
116
116
|
},
|
|
117
117
|
purple: {
|
|
118
|
-
50: '#
|
|
119
|
-
100: '#
|
|
120
|
-
200: '#
|
|
121
|
-
300: '#
|
|
122
|
-
400: '#
|
|
123
|
-
500: '#
|
|
124
|
-
600: '#
|
|
125
|
-
700: '#
|
|
126
|
-
800: '#
|
|
127
|
-
900: '#
|
|
118
|
+
50: '#F4F3FF',
|
|
119
|
+
100: '#EBE9FE',
|
|
120
|
+
200: '#D9D6FE',
|
|
121
|
+
300: '#BDB4FE',
|
|
122
|
+
400: '#9B8AFB',
|
|
123
|
+
500: '#7A5AF8',
|
|
124
|
+
600: '#6938EF',
|
|
125
|
+
700: '#5925DC',
|
|
126
|
+
800: '#4A1FB8',
|
|
127
|
+
900: '#3E1C96',
|
|
128
|
+
},
|
|
129
|
+
yellow: {
|
|
130
|
+
50: '#FFFCF5',
|
|
131
|
+
100: '#FEF0C7',
|
|
132
|
+
200: '#FEDF89',
|
|
133
|
+
300: '#FEC84B',
|
|
134
|
+
400: '#FDB022',
|
|
135
|
+
500: '#F79009',
|
|
136
|
+
600: '#DC6803',
|
|
137
|
+
700: '#B54708',
|
|
138
|
+
800: '#93370D',
|
|
139
|
+
900: '#7A2E0E',
|
|
128
140
|
},
|
|
129
141
|
border: "#F2F4F7",
|
|
130
142
|
action: {
|