x-pack/platform/plugins/private/banners/README.md
Allow to add a header banner that will be displayed on every page of the Kibana application
The plugin's configuration prefix is xpack.banners
The options are
placementThe placement of the banner. The allowed values are:
disabled - The banner will be disabled
top - The banner will be displayed in the header
textContent
The text content that will be displayed inside the banner, either plain text or markdown
textColorThe color of the banner's text. Must be a valid hex color
linkColorThe color of the banner's link's text. Must be a valid hex color
backgroundColorThe color for the banner's background. Must be a valid hex color
kibana.yml
xpack.banners:
placement: 'top'
textContent: 'Production environment - Proceed with **special levels** of caution'
textColor: '#FF0000'
linkColor: '#0B64DD'
backgroundColor: '#CC2211'