-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
Adding dark mode for pipeline diagram #26364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
Nice feature |
Happy to see a PR for this feature. |
/take |
@adrinjalali @solo-driven hi please help review too if this suits your needs #26862 thanks! |
I'm closing this issue because we already have an improved theme adaptation for some IDE. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the workflow you want to enable
The current diagram truly hurts eyes when everything else in dark mode. It would be a very nice feature to add.

Describe your proposed solution
Currently I do it this way, but I bet there could have been a better way.
`
def display_dark(pipeline, text_color="#3bd5eb"):
replacements = {
"color: black": f"color: {text_color};",
"background-color: white": "background-color: transparent",
'class="sk-toggleable__label sk-toggleable__label-arrow"': 'class="sk-toggleable__label sk-toggleable__label-arrow" style="background-color: #222831;"',
"#696969;": "#e6e6e6;",
"#d4ebff;": "#1a1a1a;",
"background-color: #f0f8ff;": "background-color: #393e46",
"background-color: #d4ebff;": "background-color: #1a1a1a;",
"color: #e6e6e6;": "color: #b3b3b3;"
}
`

Describe alternatives you've considered, if relevant
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: