feat: added color scheme options and bumped up to shadcn 3.5

This commit is contained in:
2025-11-13 15:22:58 +05:30
parent defdfd6fd1
commit 6028037e74
69 changed files with 4250 additions and 3255 deletions

View File

@@ -1,3 +1,5 @@
import { ColorScheme, Theme } from "@/providers/themeProvider";
export interface SettingsTable {
key: string;
value: string;
@@ -12,7 +14,8 @@ export interface CustomCommand {
export interface Settings {
ytdlp_update_channel: string;
ytdlp_auto_update: boolean;
theme: 'dark' | 'light' | 'system';
theme: Theme;
color_scheme: ColorScheme;
download_dir: string;
max_parallel_downloads: number;
max_retries: number;