-
Bug
-
Resolution: Fixed
-
High
-
9.2.1, 9.3.1
-
30
-
Severity 3 - Minor
-
110
-
Issue Summary
This is reproducible on Data Center: (yes)
Steps to Reproduce
- Disable dark feature `theme.switcher.disable`
- Theme is now Original Theme
- Original theme is no longer supported but the nav header has regressed by losing color
Expected Results
Nav header should retain same color as before
Actual Results
Nav header is missing colors

Workaround
NOTE: Please note that we advise against using the Original theme, as it has been deprecated. This should be used solely as a backup if theming has caused problems with the instance.
Append Original CSS var in layout style.
Edit: We suggest adding the below code by going to General Configuration > Layouts and click Create a Custom layout to all options: Main, Global, Popup, Printable and Admin. Add the code at the bottom of what is present in the Decorator Content.
<style>
:root {
--confluence-color-scheme-topBarColor: #0049B0;
--confluence-color-scheme-breadcrumbsTextColor: #DEEBFF;
--confluence-color-scheme-headingTextColor: #172B4D;
--confluence-color-scheme-linkColor: #0052CC;
--confluence-color-scheme-borderColor: #FFFFFF;
--confluence-color-scheme-searchFieldBackgroundColor: rgba(9, 30, 66, 0.48);
--confluence-color-scheme-searchFieldTextColor: #DEEBFF;
--confluence-color-scheme-topBarMenuItemTextColor: #172B4D;
--confluence-color-scheme-menuSelectedBackgroundColor: #F4F5F7;
--confluence-color-scheme-topBarMenuSelectedBackgroundColor: rgba(9, 30, 66, 0.48);
--confluence-color-scheme-topBarMenuSelectedTextColor: #DEEBFF;
--confluence-color-scheme-menuItemTextColor: #172B4D;
--confluence-color-scheme-menuItemSelectedBackgroundColor: #EBECF0;
--confluence-color-scheme-menuItemSelectedTextColor: #172B4D;
--confluence-color-scheme-headerButtonTextColor: #ffffff;
--confluence-color-scheme-headerButtonBaseBackgroundColor: #0065FF;
}
</style>