mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
Added UI for more surface options
This commit is contained in:
parent
31b428747e
commit
2e3c346fb5
3 changed files with 25 additions and 1 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit 5c92d6a47ecbc2c7008dd9191c4c17d039ed8fa3
|
||||
Subproject commit f435f12b1f4dc92f95b070e41b4b307d71e39419
|
||||
|
|
@ -84,6 +84,18 @@ export const TJDefaultTheme: Definition = {
|
|||
light: '#F6F6F6',
|
||||
dark: '#121518',
|
||||
},
|
||||
surface1: {
|
||||
light: '#FFFFFF',
|
||||
dark: '#1E2226',
|
||||
},
|
||||
surface2: {
|
||||
light: '#F6F8FA',
|
||||
dark: '#2B3036',
|
||||
},
|
||||
surface3: {
|
||||
light: '#E4E7EB',
|
||||
dark: '#3C434B',
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -121,6 +121,18 @@ class SurfaceColors {
|
|||
@ValidateNested()
|
||||
@Type(() => AppBackgroundColor)
|
||||
appBackground: AppBackgroundColor;
|
||||
|
||||
@ValidateNested()
|
||||
@Type(() => Color)
|
||||
surface1: Color;
|
||||
|
||||
@ValidateNested()
|
||||
@Type(() => Color)
|
||||
surface2: Color;
|
||||
|
||||
@ValidateNested()
|
||||
@Type(() => Color)
|
||||
surface3: Color;
|
||||
}
|
||||
|
||||
class Surface {
|
||||
|
|
|
|||
Loading…
Reference in a new issue