feat(themes): add oscura theme with updated color palette

This commit is contained in:
SameerJS6 2025-10-23 23:17:05 +05:30
parent fd578888a4
commit ea25b68637

View file

@ -1120,6 +1120,12 @@ export const themes: Record<ThemeName, Omit<Theme, "name">> = {
subColor: "#067a6e",
textColor: "#000000",
},
oscura: {
bgColor: "#0b0b0f",
mainColor: "#e2e3a0",
subColor: "#a0a0a0",
textColor: "#e6e6e6",
},
};
export const ThemesList: Theme[] = Object.keys(themes)