11.7. Customizing the page theme header for your Developer Hub instance
You can customize the header color for the light and dark theme modes in your Developer Hub instance by modifying the branding.theme section of the app-config.yaml file. You can also customize the page headers for additional Developer Hub pages, such as the Home, Catalog, and APIs pages.
app:
branding:
theme:
light:
palette: {}
pageTheme:
default:
backgroundColor: "<default_light_background_color>"
fontColor: "<default_light_font_color>"
shape: none
apis:
backgroundColor: "<apis_light_background_color>"
fontColor: "<apis_light_font_color>"
shape: none
dark:
palette: {}
pageTheme:
default:
backgroundColor: "<default_dark_background_color>"
fontColor: "<default_dark_font_color>"
shape: none
# ...
light-
The theme mode, for example,
lightordark default-
The
yamlheader for the default page theme configuration backgroundColor-
The color of the page header background, for example,
#fffffforwhite fontColor-
The color of the text in the page header, for example,
#000000orblack shape-
The pattern on the page header, for example,
wave,round, ornoneapis::Theyamlheader for a specific page theme configuration, for example,apis,home