29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
|
|
import type React from 'react';
|
||
|
|
import { useMemo } from 'react';
|
||
|
|
|
||
|
|
import { useAppearanceChromeStore } from '../state/appearanceChromeStore';
|
||
|
|
import { useSettingsChromeStore } from '../state/settingsChromeStore';
|
||
|
|
import { buildAppThemeCssVars } from '../state/settingsStateDefaults';
|
||
|
|
import { getUiThemeById } from '../../infrastructure/config/uiThemes';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* App theme CSS variables for surfaces that need them (vault surface, plugin
|
||
|
|
* theme tokens). Reads accent from appearanceChromeStore and UI theme ids from
|
||
|
|
* settingsChromeStore so accent drags only re-render the leaf that applies the
|
||
|
|
* vars, never the App shell.
|
||
|
|
*/
|
||
|
|
export function useAppThemeStyle(): React.CSSProperties {
|
||
|
|
const { accentMode, customAccent } = useAppearanceChromeStore();
|
||
|
|
const { resolvedTheme, darkUiThemeId, lightUiThemeId } = useSettingsChromeStore();
|
||
|
|
return useMemo(() => {
|
||
|
|
const tokens = getUiThemeById(
|
||
|
|
resolvedTheme,
|
||
|
|
resolvedTheme === 'dark' ? darkUiThemeId : lightUiThemeId,
|
||
|
|
).tokens;
|
||
|
|
return {
|
||
|
|
...buildAppThemeCssVars(tokens, accentMode, customAccent),
|
||
|
|
colorScheme: resolvedTheme,
|
||
|
|
} as React.CSSProperties;
|
||
|
|
}, [accentMode, customAccent, darkUiThemeId, lightUiThemeId, resolvedTheme]);
|
||
|
|
}
|