This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-1-test by this push:
     new f8b8eb3371f Bugfix: Fix typo in theme.ts gray.500 color palette 
(#55739)
f8b8eb3371f is described below

commit f8b8eb3371f06479d891679bbe04147697f18102
Author: Olivier <[email protected]>
AuthorDate: Tue Sep 16 17:47:47 2025 -0400

    Bugfix: Fix typo in theme.ts gray.500 color palette (#55739)
    
    * Fix bug in gray.500
    
    * 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.
    
    (cherry picked from commit 7a018368b1f68ca2619fe40b640d1a6819842767)
---
 .../src/airflow/api_fastapi/auth/managers/simple/ui/src/theme.ts        | 2 +-
 airflow-core/src/airflow/ui/src/theme.ts                                | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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 a8f446f512c..7d40d21ef80 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)
diff --git a/airflow-core/src/airflow/ui/src/theme.ts 
b/airflow-core/src/airflow/ui/src/theme.ts
index 464fbc8f86b..bd8206c11d3 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)

Reply via email to