From f897ed9457ef6e0ca8dd0b1cdd0d62aae888c7bd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 17:16:41 +0000 Subject: [PATCH 1/2] chore(deps): update postgres docker tag to v18 --- compose.dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.dev.yml b/compose.dev.yml index ffff836..971ff7c 100644 --- a/compose.dev.yml +++ b/compose.dev.yml @@ -21,7 +21,7 @@ services: postgres: container_name: staryl-postgres - image: "postgres:15-alpine" + image: "postgres:18-alpine" ports: - "5432:5432" restart: no From 1f20f9a4f87843d30c09cdb5e1d692c2176cfbbf Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 17:17:14 +0000 Subject: [PATCH 2/2] [autofix.ci] apply automated fixes --- src/lib/common/constants.ts | 46 ++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src/lib/common/constants.ts b/src/lib/common/constants.ts index 458b17d..ba12352 100644 --- a/src/lib/common/constants.ts +++ b/src/lib/common/constants.ts @@ -2,33 +2,33 @@ export const PathRoot = new URL("../../..", import.meta.url); export const PathSrc = new URL("./src/", PathRoot); export enum BrandingColors { - Primary = 0xFFFFFF, + Primary = 0xffffff, Secondary = 0x0000, } export enum Colors { - White = 0xE7E7E8, - Amber = 0xFFC107, - Amber300 = 0xFFD54F, - Blue = 0x2196F3, - BlueGrey = 0x607D8B, + White = 0xe7e7e8, + Amber = 0xffc107, + Amber300 = 0xffd54f, + Blue = 0x2196f3, + BlueGrey = 0x607d8b, Brown = 0x795548, - Cyan = 0x00BCD4, - DeepOrange = 0xFF5722, - DeepPurple = 0x673AB7, - Green = 0x4CAF50, - Grey = 0x9E9E9E, - Indigo = 0x3F51B5, - LightBlue = 0x03A9F4, - LightGreen = 0x8BC34A, - Lime = 0xCDDC39, - Lime300 = 0xDCE775, - Orange = 0xFF9800, - Pink = 0xE91E63, - Purple = 0x9C27B0, - Red = 0xF44336, - Red300 = 0xE57373, + Cyan = 0x00bcd4, + DeepOrange = 0xff5722, + DeepPurple = 0x673ab7, + Green = 0x4caf50, + Grey = 0x9e9e9e, + Indigo = 0x3f51b5, + LightBlue = 0x03a9f4, + LightGreen = 0x8bc34a, + Lime = 0xcddc39, + Lime300 = 0xdce775, + Orange = 0xff9800, + Pink = 0xe91e63, + Purple = 0x9c27b0, + Red = 0xf44336, + Red300 = 0xe57373, Teal = 0x009688, - Yellow = 0xFFEB3B, - Yellow300 = 0xFFF176, + Yellow = 0xffeb3b, + Yellow300 = 0xfff176, }