add: color selection on dashboard

This commit is contained in:
rasmusq
2025-12-19 19:33:43 +01:00
parent 22f9f8f0c9
commit b80ef2cfea
10 changed files with 128 additions and 14 deletions

View File

@@ -13,7 +13,8 @@ export const users = pgTable('user', {
image: text('image'),
password: text('password'),
username: text('username').unique(),
dashboardTheme: text('dashboard_theme').default('none')
dashboardTheme: text('dashboard_theme').default('none'),
dashboardColor: text('dashboard_color')
});
export const accounts = pgTable(