Skip to content

Commit

Permalink
Colorblind friendly UI
Browse files Browse the repository at this point in the history
  • Loading branch information
haroldwoo committed Nov 11, 2020
1 parent e6456b0 commit 6b93382
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ RUN export SLUGIFY_USES_TEXT_UNIDECODE=yes && pip install --no-cache-dir -r requ
# Switch back to home directory
WORKDIR /app

COPY ./config/ /app

USER 10001

ENV PYTHONUNBUFFERED=1 \
Expand Down
11 changes: 11 additions & 0 deletions config/airflow_local_settings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
STATE_COLORS = {
"queued": 'gray',
"running": 'lime',
"success": '#0000FF',
"failed": 'red',
"up_for_retry": 'gold',
"up_for_reschedule": 'turquoise',
"upstream_failed": 'orange',
"skipped": 'pink',
"scheduled": 'tan',
}

0 comments on commit 6b93382

Please sign in to comment.