2
2
CustomizationCorners ,
3
3
CustomizationHeaderPreset ,
4
4
CustomizationIconsStyle ,
5
- type CustomizationSettings ,
6
5
CustomizationSidebarBackgroundStyle ,
7
6
CustomizationSidebarListStyle ,
7
+ CustomizationThemeMode ,
8
8
type CustomizationThemedColor ,
9
9
type CustomizationTint ,
10
10
type SiteCustomizationSettings ,
@@ -41,10 +41,11 @@ import { AnnouncementDismissedScript } from '../Announcement';
41
41
* It takes care of setting the theme and the language.
42
42
*/
43
43
export async function CustomizationRootLayout ( props : {
44
- customization : SiteCustomizationSettings | CustomizationSettings ;
44
+ forcedTheme ?: CustomizationThemeMode | null ;
45
+ customization : SiteCustomizationSettings ;
45
46
children : React . ReactNode ;
46
47
} ) {
47
- const { customization, children } = props ;
48
+ const { customization, forcedTheme , children } = props ;
48
49
49
50
const language = getSpaceLanguage ( customization ) ;
50
51
const tintColor = getTintColor ( customization ) ;
@@ -86,7 +87,12 @@ export async function CustomizationRootLayout(props: {
86
87
'links' in customization . styling && `links-${ customization . styling . links } ` ,
87
88
fontNotoColorEmoji . variable ,
88
89
ibmPlexMono . variable ,
89
- fontData . type === 'default' ? fontData . variable : 'font-custom'
90
+ fontData . type === 'default' ? fontData . variable : 'font-custom' ,
91
+
92
+ // Set the dark/light class statically to avoid flashing and make it work when JS is disabled
93
+ ( forcedTheme ?? customization . themes . default ) === CustomizationThemeMode . Dark
94
+ ? 'dark'
95
+ : ''
90
96
) }
91
97
>
92
98
< head >
@@ -181,7 +187,7 @@ export async function CustomizationRootLayout(props: {
181
187
* If the tint color is not set or it is a space customization, it will return the default color.
182
188
*/
183
189
function getTintColor (
184
- customization : CustomizationSettings | SiteCustomizationSettings
190
+ customization : SiteCustomizationSettings
185
191
) : CustomizationTint [ 'color' ] | undefined {
186
192
if ( 'tint' in customization . styling && customization . styling . tint ) {
187
193
return {
@@ -228,7 +234,7 @@ function getTintMixColor(
228
234
* If it is a space customization, it will return the default styles.
229
235
*/
230
236
function getSidebarStyles (
231
- customization : CustomizationSettings | SiteCustomizationSettings
237
+ customization : SiteCustomizationSettings
232
238
) : SiteCustomizationSettings [ 'styling' ] [ 'sidebar' ] {
233
239
if ( 'sidebar' in customization . styling ) {
234
240
return {
@@ -248,7 +254,7 @@ function getSidebarStyles(
248
254
* If it is a space customization, it will return the default styles.
249
255
*/
250
256
function getSemanticColors (
251
- customization : CustomizationSettings | SiteCustomizationSettings
257
+ customization : SiteCustomizationSettings
252
258
) : Pick <
253
259
SiteCustomizationSettings [ 'styling' ] ,
254
260
'infoColor' | 'successColor' | 'warningColor' | 'dangerColor'
0 commit comments