Skip to content

Commit 20f243d

Browse files
committed
Theme colors of profile pages
1 parent ad685c9 commit 20f243d

31 files changed

+3036
-15
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ Version 0.6.0
66

77
To be released.
88

9+
- The theme color of the profile page is now customizable. The list of all
10+
available theme colors can be found in the [*Colors* section] of the Pico
11+
CSS docs.
12+
913
- On profile page, alt texts for images are now expanded within `<details>`.
1014
[[#99], [#110] by Okuto Oyama]
1115

16+
[*Colors* section]: https://picocss.com/docs/colors
1217
[#110]: https://github.com/fedify-dev/hollo/pull/110
1318

1419

drizzle/0063_theme_color.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CREATE TYPE "public"."theme_color" AS ENUM('amber', 'azure', 'blue', 'cyan', 'fuchsia', 'green', 'grey', 'indigo', 'jade', 'lime', 'orange', 'pink', 'pumpkin', 'purple', 'red', 'sand', 'slate', 'violet', 'yellow', 'zinc');--> statement-breakpoint
2+
ALTER TABLE "account_owners" ADD COLUMN "theme_color" "theme_color" NOT NULL DEFAULT 'azure';--> statement-breakpoint
3+
ALTER TABLE "account_owners" ALTER COLUMN "theme_color" DROP DEFAULT;

0 commit comments

Comments
 (0)