aboutsummaryrefslogtreecommitdiff
path: root/api/api.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/api.ts')
-rw-r--r--api/api.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/api/api.ts b/api/api.ts
index b8a92e3..4ba44e7 100644
--- a/api/api.ts
+++ b/api/api.ts
@@ -16,10 +16,17 @@ export type ruleset = {
shared: boolean;
},
ranked: boolean;
-};
+}
+
+export type userColors = {
+ diskA: string;
+ diskB: string;
+ background: string;
+}
export interface userPreferences {
darkMode?: boolean;
ruleset?: ruleset;
+ userColors?: userColors;
}