Firs Commit

This commit is contained in:
2025-03-21 09:37:29 +07:00
commit b5f22f157e
98 changed files with 16210 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
export type ThemeTypes = {
name: string;
dark: boolean;
variables?: object;
colors: {
primary?: string;
secondary?: string;
info?: string;
success?: string;
warning?: string;
error?: string;
lightprimary?: string;
lightsecondary?: string;
lightsuccess?: string;
lighterror?: string;
lightinfo?: string;
lightwarning?: string;
textPrimary?: string;
textSecondary?: string;
borderColor?: string;
hoverColor?: string;
containerBg?: string;
background?: string;
surface?: string;
grey100?: string;
grey200?: string;
light?:string;
muted?:string;
};
};