mirror of
https://github.com/unraid/api.git
synced 2026-01-06 16:49:49 -06:00
feat: theme setting
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { KeyIcon } from '@heroicons/vue/24/solid';
|
||||
import { Theme } from '~/types/theme';
|
||||
import { UserProfileLink } from '~/types/userProfile';
|
||||
|
||||
export enum ServerState {
|
||||
@@ -40,6 +41,7 @@ export interface Server {
|
||||
site?: string;
|
||||
// state?: ServerState;
|
||||
state: string;
|
||||
theme: Theme;
|
||||
uptime?: number;
|
||||
username?: string;
|
||||
wanFQDN?: string;
|
||||
|
||||
9
types/theme.ts
Normal file
9
types/theme.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export interface Theme {
|
||||
banner: string;
|
||||
bannerGradient: string;
|
||||
bgColor: string;
|
||||
descriptionShow: boolean;
|
||||
metaColor: string;
|
||||
name: string;
|
||||
textColor: string;
|
||||
}
|
||||
Reference in New Issue
Block a user