diff --git a/airflow-core/src/airflow/ui/src/layouts/Details/Gantt/Gantt.tsx b/airflow-core/src/airflow/ui/src/layouts/Details/Gantt/Gantt.tsx index 655e86e19ce87..9cc7884d72def 100644 --- a/airflow-core/src/airflow/ui/src/layouts/Details/Gantt/Gantt.tsx +++ b/airflow-core/src/airflow/ui/src/layouts/Details/Gantt/Gantt.tsx @@ -88,8 +88,8 @@ export const Gantt = ({ limit }: Props) => { const [lightGridColor, darkGridColor, lightSelectedColor, darkSelectedColor] = useToken("colors", [ "gray.200", "gray.800", - "brand.200", - "brand.800", + "blue.200", + "blue.800", ]); const gridColor = colorMode === "light" ? lightGridColor : darkGridColor; const selectedItemColor = colorMode === "light" ? lightSelectedColor : darkSelectedColor; diff --git a/airflow-core/src/airflow/ui/src/layouts/Details/Grid/GridTI.tsx b/airflow-core/src/airflow/ui/src/layouts/Details/Grid/GridTI.tsx index 9802c04ed0870..817f673352855 100644 --- a/airflow-core/src/airflow/ui/src/layouts/Details/Grid/GridTI.tsx +++ b/airflow-core/src/airflow/ui/src/layouts/Details/Grid/GridTI.tsx @@ -77,7 +77,7 @@ const Instance = ({ dagId, instance, isGroup, isMapped, onClick, runId, search, return (