From f0dd124e4b1640e57bc2dd145c023e2e018ebf46 Mon Sep 17 00:00:00 2001 From: Olivier Daneau Date: Tue, 16 Sep 2025 14:13:31 -0400 Subject: [PATCH 1/2] Fix bug in gray.500 --- airflow-core/src/airflow/ui/src/theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow-core/src/airflow/ui/src/theme.ts b/airflow-core/src/airflow/ui/src/theme.ts index 464fbc8f86b50..bd8206c11d338 100644 --- a/airflow-core/src/airflow/ui/src/theme.ts +++ b/airflow-core/src/airflow/ui/src/theme.ts @@ -59,7 +59,7 @@ export const customConfig = defineConfig({ "200": { value: "oklch(0.915 0.01 253)" }, // Original: oklch(0.928 0.006 264.531) "300": { value: "oklch(0.85 0.016 253)" }, // Original: oklch(0.872 0.01 258.338) "400": { value: "oklch(0.75 0.025 252)" }, // Original: oklch(0.707 0.022 261.325) - "500": { value: "oklch(0.63, 0.04, 252)" }, // Original: oklch(0.551 0.027 264.364) + "500": { value: "oklch(0.63 0.042 252)" }, // Original: oklch(0.551 0.027 264.364) "600": { value: "oklch(0.45 0.055 251)" }, // Original: oklch(0.446 0.03 256.802) "700": { value: "oklch(0.35 0.045 251)" }, // Original: oklch(0.373 0.034 259.733) "800": { value: "oklch(0.28 0.035 251)" }, // Original: oklch(0.278 0.033 256.848) From 9cd837b335ea4d4a5da8d185267e3dee8472a709 Mon Sep 17 00:00:00 2001 From: Olivier Daneau Date: Tue, 16 Sep 2025 16:56:19 -0400 Subject: [PATCH 2/2] fix: Remove syntax error commas from auth manager theme.ts gray.500 Fix oklch color syntax in auth manager theme to match main UI theme. Removes commas and updates chroma value from 0.04 to 0.042 for consistency. --- .../airflow/api_fastapi/auth/managers/simple/ui/src/theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui/src/theme.ts b/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui/src/theme.ts index a8f446f512c33..7d40d21ef8093 100644 --- a/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui/src/theme.ts +++ b/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui/src/theme.ts @@ -59,7 +59,7 @@ export const customConfig = defineConfig({ "200": { value: "oklch(0.915 0.01 253)" }, // Original: oklch(0.928 0.006 264.531) "300": { value: "oklch(0.85 0.016 253)" }, // Original: oklch(0.872 0.01 258.338) "400": { value: "oklch(0.75 0.025 252)" }, // Original: oklch(0.707 0.022 261.325) - "500": { value: "oklch(0.63, 0.04, 252)" }, // Original: oklch(0.551 0.027 264.364) + "500": { value: "oklch(0.63 0.042 252)" }, // Original: oklch(0.551 0.027 264.364) "600": { value: "oklch(0.45 0.055 251)" }, // Original: oklch(0.446 0.03 256.802) "700": { value: "oklch(0.35 0.045 251)" }, // Original: oklch(0.373 0.034 259.733) "800": { value: "oklch(0.28 0.035 251)" }, // Original: oklch(0.278 0.033 256.848)