(feat): big updates, added og tensamin theme
All checks were successful
/ package (push) Successful in 1m4s

This commit is contained in:
Alois 2026-07-26 15:05:47 +02:00
commit 0d2dc1676c
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
19 changed files with 329 additions and 153 deletions

View file

@ -36,11 +36,17 @@ export type ThemeDesign = {
fontFamily: ThemeFontFamily;
};
export type ThemeDefaultValues = {
borderRadius: number;
design: ThemeDesign;
};
export type ThemePreset = {
id: string;
title: string;
logo: string;
css: string;
defaultValues?: ThemeDefaultValues;
};
export type ThemeProviderProps = {