diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f0a0e0f..ecc3f40 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2113,8 +2113,8 @@ packages: resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} engines: {node: '>=0.10.0'} - hono@4.12.10: - resolution: {integrity: sha512-mx/p18PLy5og9ufies2GOSUqep98Td9q4i/EF6X7yJgAiIopxqdfIO3jbqsi3jRgTgw88jMDEzVKi+V2EF+27w==} + hono@4.12.12: + resolution: {integrity: sha512-p1JfQMKaceuCbpJKAPKVqyqviZdS0eUxH9v82oWo1kb9xjQ5wA6iP3FNVAPDFlz5/p7d45lO+BpSk1tuSZMF4Q==} engines: {node: '>=16.9.0'} hookable@6.1.0: @@ -3493,9 +3493,9 @@ snapshots: '@henrygd/queue@1.2.0': {} - '@hono/node-server@1.19.11(hono@4.12.10)': + '@hono/node-server@1.19.11(hono@4.12.12)': dependencies: - hono: 4.12.10 + hono: 4.12.12 '@humanfs/core@0.19.1': {} @@ -3980,13 +3980,13 @@ snapshots: '@electric-sql/pglite': 0.4.1 '@electric-sql/pglite-socket': 0.1.1(@electric-sql/pglite@0.4.1) '@electric-sql/pglite-tools': 0.3.1(@electric-sql/pglite@0.4.1) - '@hono/node-server': 1.19.11(hono@4.12.10) + '@hono/node-server': 1.19.11(hono@4.12.12) '@prisma/get-platform': 7.2.0 '@prisma/query-plan-executor': 7.2.0 '@prisma/streams-local': 0.1.2 foreground-child: 3.3.1 get-port-please: 3.2.0 - hono: 4.12.10 + hono: 4.12.12 http-status-codes: 2.3.0 pathe: 2.0.3 proper-lockfile: 4.1.2 @@ -5128,7 +5128,7 @@ snapshots: dependencies: parse-passwd: 1.0.0 - hono@4.12.10: {} + hono@4.12.12: {} hookable@6.1.0: {} diff --git a/src/lib/common/constants.ts b/src/lib/common/constants.ts index d9dc188..b1df22e 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, }