labsense-ui-kit 1.2.49 → 1.2.50

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.
@@ -56,11 +56,17 @@ export interface TransparentColors {
56
56
  white10: string;
57
57
  white20: string;
58
58
  white30: string;
59
- white40: string;
60
- white50: string;
61
- black10: string;
62
- black20: string;
63
- black30: string;
59
+ white40?: string;
60
+ white50?: string;
61
+ white100?: string;
62
+ white200?: string;
63
+ white300?: string;
64
+ black10?: string;
65
+ black20?: string;
66
+ black30?: string;
67
+ black100?: string;
68
+ black200?: string;
69
+ black300?: string;
64
70
  }
65
71
  export interface ThemeColorsInterface {
66
72
  vms: {
@@ -125,6 +131,19 @@ export interface ThemeColorsInterface {
125
131
  info: ColorScale;
126
132
  transparent: TransparentColors;
127
133
  };
134
+ SNetLabsWebsite: {
135
+ primary: ColorScale;
136
+ secondary: ColorScale;
137
+ gray: ColorScale;
138
+ error: ColorScale;
139
+ success: ColorScale;
140
+ warning: ColorScale;
141
+ info: ColorScale;
142
+ tertiary: ColorScale;
143
+ purple: ColorScale;
144
+ yellow: ColorScale;
145
+ transparent: TransparentColors;
146
+ };
128
147
  }
129
148
  export declare type ThemeMode = 'light' | 'dark' | 'device';
130
149
  export declare type EffectiveTheme = 'light' | 'dark';