Skip to content

Commit

Permalink
docs(platforms_and_themes.md): extend appearance override info (#7584)
Browse files Browse the repository at this point in the history
h2. Описание

см. #7577 (comment)

h2. Release notes

h2. Документация
- Дополнен блок о переопределение темы через `AppearanceProvider` информацией о тонкостях работы некоторых компонентов.
  • Loading branch information
inomdzhon authored Sep 16, 2024
1 parent 4477bd5 commit 412a8a0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions styleguide/pages/platforms_and_themes.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,34 @@ const appearance = useAppearance();
<Div>{appearance === 'light' ? 'Out of the blue' : 'And into the black'}</Div>;
```

> Стоит иметь ввиду, что некоторые компоненты делегируют цвет фона родителю выше, например, это
> компонент [Cell](#/Cell) и его производные.
>
> На примере [SimpleCell](#/SimpleCell) рассмотрим решение проблемы через допустимое определение
> фона посредством `className` или `style`:
>
> ```jsx static
> <Group header={<Header>Настройка тем</Header>}>
> <SimpleCell before={<Icon20PalleteOutline />}>Системная тема</SimpleCell>
> <AppearanceProvider value="dark">
> <SimpleCell
> before={<Icon20MoonOutline />}
> style={{ backgroundColor: 'var(--vkui--color_background_content)' }}
> >
> Тёмная тема
> </SimpleCell>
> </AppearanceProvider>
> <AppearanceProvider value="light">
> <SimpleCell
> before={<Icon20SunOutline />}
> style={{ backgroundColor: 'var(--vkui--color_background_content)' }}
> >
> Светлая тема
> </SimpleCell>
> </AppearanceProvider>
> </Group>
> ```
<br/>
### [@vkontakte/vkui-tokens](https://github.com/VKCOM/vkui-tokens)
Expand Down

0 comments on commit 412a8a0

Please sign in to comment.