Skip to content
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

Adding additional theme variables to jupyterhub theme config #2215

Merged
merged 1 commit into from
Jan 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/_nebari/stages/kubernetes_services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,18 @@ class JupyterHubTheme(schema.Base):
welcome: str = """Welcome! Learn about Nebari's features and configurations in <a href="https://www.nebari.dev/docs">the documentation</a>. If you have any questions or feedback, reach the team on <a href="https://www.nebari.dev/docs/community#getting-support">Nebari's support forums</a>."""
logo: str = "https://raw.githubusercontent.com/nebari-dev/nebari-design/main/logo-mark/horizontal/Nebari-Logo-Horizontal-Lockup-White-text.svg"
primary_color: str = "#4f4173"
primary_color_dark: str = "#4f4173"
secondary_color: str = "#957da6"
secondary_color_dark: str = "#957da6"
accent_color: str = "#32C574"
accent_color_dark: str = "#32C574"
text_color: str = "#111111"
h1_color: str = "#652e8e"
h2_color: str = "#652e8e"
version: str = f"v{__version__}"
navbar_color: str = "#1c1d26"
navbar_text_color: str = "#f1f1f6"
navbar_hover_color: str = "#db96f3"
display_version: str = "True" # limitation of theme everything is a str


Expand Down
Loading