fix(tokens): цвет контента Divider переведён на fg.muted - #67
Merged
Conversation
fabulous-unicorn
requested review from
fabulous-unicorn
and removed request for
grevtsovna
August 12, 2026 13:13
fabulous-unicorn
approved these changes
Aug 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Проблема
В
Dividerиконка и текст красятся в разные цвета:components.divider.content.color→color.fg.default#2b2e33#ffffff<Subtitle color='secondary'>→color.fg.muted#85888e#a2a5a9Расхождение появилось при переводе компонента на сгенерированные токены (
42dd628): до него иконка использовалаtheme.General.textSecondaryColor— то же вторичное значение, что и подпись.Компонентный токен
divider.content.colorобъявлен как{color.fg.default}, поэтому иконка стала основного цвета. Текст под миграцию не попал — он захардкожен пропомcolor='secondary'и в стилях компонента не фигурирует.Решение
divider.content.colorв исходных токенах переведён на{color.fg.muted}и токены перегенерированы. Теперь иконка и подпись берут одно значение.Изменения
design-tokens/input/tokens.json—components.divider.content.color:{color.fg.default}→{color.fg.muted}src/theme/tokens/components/light.json—#2b2e33→#85888e(сгенерировано)src/theme/tokens/components/dark.json—#ffffff→#a2a5a9(сгенерировано)Divider.test.tsx.snap— обновлён, дифф только поstrokeиконкиПроверки
yarn tokens:check— сгенерированные токены актуальныyarn jest— 48 suites, 1708 тестов, 1567 снапшотов — всё зелёноеprettier --checkпо затронутым файлам — чистоcomponents.divider.content.colorбольше нигде не используется (ListBaseберёт собственныйborder.neutral.default), остальные компоненты не задеты