diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-02-04 20:48:00 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-02-04 20:48:00 +0100 |
commit | faf61e578267b3a5e2f5e5e74e6ae238b19bd76a (patch) | |
tree | d016a02f9ec5293077c8d0fe170f6d6b25d14a11 /api | |
parent | c6762af035e354e41a12af143f3fc5094551687e (diff) |
settings page WIP
Diffstat (limited to 'api')
-rw-r--r-- | api/api.ts | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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; } |