Updated the color names

This commit is contained in:
devanshu052000 2025-05-12 14:12:17 +05:30
parent 2e3c346fb5
commit 65539ddbb1
3 changed files with 17 additions and 17 deletions

@ -1 +1 @@
Subproject commit f435f12b1f4dc92f95b070e41b4b307d71e39419
Subproject commit 335435aa74f8d56997978d7e6343023ee2726f81

View file

@ -31,11 +31,11 @@ export const TJDefaultTheme: Definition = {
light: '#1B1F24',
dark: '#CFD3D8',
},
secondary: {
placeholder: {
light: '#6A727C',
dark: '#858C94',
},
tertiary: {
disabled: {
light: '#ACB2B9',
dark: '#545B64',
},
@ -48,15 +48,15 @@ export const TJDefaultTheme: Definition = {
large: 0,
},
colors: {
primary: {
default: {
light: '#CCD1D5',
dark: '#3C434B',
},
secondary: {
weak: {
light: '#E4E7EB',
dark: '#EEF0F1',
},
tertiary: {
disabled: {
light: '#E4E7EB',
dark: '#F6F8FA',
},
@ -64,15 +64,15 @@ export const TJDefaultTheme: Definition = {
},
systemStatus: {
colors: {
primary: {
success: {
light: '#1E823B',
dark: '#318344',
},
secondary: {
error: {
light: '#D72D39',
dark: '#D03F43',
},
tertiary: {
warning: {
light: '#BF4F03',
dark: '#BA5722',
},

View file

@ -33,12 +33,12 @@ class TextColors {
@IsOptional()
@ValidateNested()
@Type(() => Color)
secondary?: Color;
placeholder?: Color;
@IsOptional()
@ValidateNested()
@Type(() => Color)
tertiary?: Color;
disabled?: Color;
}
class Text {
@ -64,17 +64,17 @@ class BorderRadius {
class BorderColors {
@ValidateNested()
@Type(() => Color)
primary: Color;
default: Color;
@IsOptional()
@ValidateNested()
@Type(() => Color)
secondary?: Color;
weak?: Color;
@IsOptional()
@ValidateNested()
@Type(() => Color)
tertiary?: Color;
disabled?: Color;
}
class Border {
@ -90,17 +90,17 @@ class Border {
class SystemStatusColors {
@ValidateNested()
@Type(() => Color)
primary: Color;
success: Color;
@IsOptional()
@ValidateNested()
@Type(() => Color)
secondary?: Color;
error?: Color;
@IsOptional()
@ValidateNested()
@Type(() => Color)
tertiary?: Color;
warning?: Color;
}
class SystemStatus {