From 93d3e0ccd4118018f210d413e426ee71ccaeb0e2 Mon Sep 17 00:00:00 2001 From: Leanne Ahern Date: Wed, 27 May 2026 15:54:33 +0100 Subject: [PATCH 1/2] Updating theme params to reflect documentation Signed-off-by: Leanne Ahern --- .../app-config/app-config.local.example.yaml | 27 ++++++++++++------- configs/app-config/app-config.yaml | 26 ++++++++++++------ 2 files changed, 36 insertions(+), 17 deletions(-) diff --git a/configs/app-config/app-config.local.example.yaml b/configs/app-config/app-config.local.example.yaml index 458dcd97..4d599358 100644 --- a/configs/app-config/app-config.local.example.yaml +++ b/configs/app-config/app-config.local.example.yaml @@ -14,22 +14,31 @@ 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 diff --git a/configs/app-config/app-config.yaml b/configs/app-config/app-config.yaml index 71144b53..1ad3070e 100644 --- a/configs/app-config/app-config.yaml +++ b/configs/app-config/app-config.yaml @@ -29,15 +29,25 @@ 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?' From fc9c251bbc3cdcf5e329987373c1fe68f91de9c9 Mon Sep 17 00:00:00 2001 From: Leanne Ahern Date: Wed, 27 May 2026 16:12:27 +0100 Subject: [PATCH 2/2] Removing unneccessary blank space Signed-off-by: Leanne Ahern --- configs/app-config/app-config.local.example.yaml | 1 - configs/app-config/app-config.yaml | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/configs/app-config/app-config.local.example.yaml b/configs/app-config/app-config.local.example.yaml index 4d599358..3571c677 100644 --- a/configs/app-config/app-config.local.example.yaml +++ b/configs/app-config/app-config.local.example.yaml @@ -29,7 +29,6 @@ app: pageTheme: default: backgroundColor: ${HEADER_LIGHT_COLOR_1}, ${HEADER_LIGHT_COLOR_2} - dark: palette: primary: diff --git a/configs/app-config/app-config.yaml b/configs/app-config/app-config.yaml index 1ad3070e..ff986460 100644 --- a/configs/app-config/app-config.yaml +++ b/configs/app-config/app-config.yaml @@ -37,7 +37,6 @@ app: pageTheme: default: backgroundColor: ${HEADER_LIGHT_COLOR_1}, ${HEADER_LIGHT_COLOR_2} - dark: palette: primary: @@ -47,7 +46,7 @@ app: 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?'