first commit

This commit is contained in:
Yusron alamsyah
2026-03-13 10:45:28 +07:00
commit 6bb6a1d430
568 changed files with 51753 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
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;
darkgray?: string;
light?: string;
muted?: string;
};
};