Skip to content
Open
Show file tree
Hide file tree
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
26 changes: 17 additions & 9 deletions configs/app-config/app-config.local.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,30 @@ app:
# If using a different logo, replace these lines with your own image(s)
# fullLogo: data:image/svg+xml;base64,your-image-goes-here==
# - or -
# fullLogo:
# fullLogo:
# dark: data:image/svg+xml;base64,your-image-in-dark-mode-goes-here==
# light: data:image/svg+xml;base64,your-image-in-light-mode-goes-here==
# iconLogo: data:image/svg+xml;base64,your-image-goes-here==
fullLogoWidth: ${FULL_LOGO_WIDTH}
theme:
light:
primaryColor: ${PRIMARY_LIGHT_COLOR}
headerColor1: ${HEADER_LIGHT_COLOR_1}
headerColor2: ${HEADER_LIGHT_COLOR_2}
navigationIndicatorColor: ${NAV_INDICATOR_LIGHT_COLOR}
palette:
primary:
main: ${PRIMARY_LIGHT_COLOR}
navigation:
indicator: ${NAV_INDICATOR_LIGHT_COLOR}
pageTheme:
default:
backgroundColor: ${HEADER_LIGHT_COLOR_1}, ${HEADER_LIGHT_COLOR_2}
dark:
primaryColor: ${PRIMARY_DARK_COLOR}
headerColor1: ${HEADER_DARK_COLOR_1}
headerColor2: ${HEADER_DARK_COLOR_2}
navigationIndicatorColor: ${NAV_INDICATOR_DARK_COLOR}
palette:
primary:
main: ${PRIMARY_DARK_COLOR}
navigation:
indicator: ${NAV_INDICATOR_DARK_COLOR}
pageTheme:
default:
backgroundColor: ${HEADER_DARK_COLOR_1}, ${HEADER_DARK_COLOR_2}

# Tech Radar Plugin Example - uncomment with plugin override to use
# Replace URL with your own hosted json to visualize data in Tech Radar
Expand Down
25 changes: 17 additions & 8 deletions configs/app-config/app-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,24 @@ app:
fullLogoWidth: ${FULL_LOGO_WIDTH}
theme:
light:
primaryColor: ${PRIMARY_LIGHT_COLOR}
headerColor1: ${HEADER_LIGHT_COLOR_1}
headerColor2: ${HEADER_LIGHT_COLOR_2}
navigationIndicatorColor: ${NAV_INDICATOR_LIGHT_COLOR}
palette:
primary:
main: ${PRIMARY_LIGHT_COLOR}
navigation:
indicator: ${NAV_INDICATOR_LIGHT_COLOR}
pageTheme:
default:
backgroundColor: ${HEADER_LIGHT_COLOR_1}, ${HEADER_LIGHT_COLOR_2}
dark:
primaryColor: ${PRIMARY_DARK_COLOR}
headerColor1: ${HEADER_DARK_COLOR_1}
headerColor2: ${HEADER_DARK_COLOR_2}
navigationIndicatorColor: ${NAV_INDICATOR_DARK_COLOR}
palette:
primary:
main: ${PRIMARY_DARK_COLOR}
navigation:
indicator: ${NAV_INDICATOR_DARK_COLOR}
pageTheme:
default:
backgroundColor: ${HEADER_DARK_COLOR_1}, ${HEADER_DARK_COLOR_2}

quickstart:
# Quickstarts for all users (both new admins and new developers)
- title: 'What is Developer Hub?'
Expand Down
Loading