add theme props

This commit is contained in:
SethBurkart123
2024-03-31 16:09:55 +11:00
parent 8ac3b1de71
commit 8736093ff6
3 changed files with 11 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
type CustomTheme = {
name: string;
description: string;
defaultColour: string;
CanChangeColour: boolean;
CustomCSS: string;
CustomImages: string[];
}