Zinkue opened a new issue, #52251: URL: https://github.com/apache/airflow/issues/52251
### Apache Airflow Provider(s) fab ### Versions of Apache Airflow Providers apache-airflow-providers-fab==2.2.1 ### Apache Airflow version 3.0.2 ### Operating System macOS 15.5 ### Deployment Docker-Compose ### Deployment details Docker Compose version v2.35.1-desktop.1 ### What happened I wanted to change the color of navbar, followed documentation but nothing happened ### What you think should happen instead If I change the color of the navbar it should change ### How to reproduce 1. Follow the steps of https://airflow.apache.org/docs/apache-airflow/stable/howto/docker-compose/index.html# 2. Inside of `docker-compose.yaml` file do the next change: ``` # image: ${AIRFLOW_IMAGE_NAME:-apache/airflow:3.0.2} build: . ``` 3. Create `Dockerfile` ``` FROM apache/airflow:3.0.2 ADD requirements.txt . RUN pip install apache-airflow==${AIRFLOW_VERSION} -r requirements.txt ``` 4. Create `requirements.txt` ``` apache-airflow-providers-fab==2.2.1 ``` 5. In the same directory, go to `config/airflow.cfg` and change `navbar_color` value to `#219151` 6. In terminal, run `docker compose up -d` and then `docker exec -it <apiserver-container> /bin/bash` 7. Execute `airflow config list | grep navbar_color` and check we have the same value from step 5. 8. Go to Airflow UI and check that navbar color has not changed  ### Anything else _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org