-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ui/react/styles): vars.css.ts를 theme.css.ts로 통합 (#259)
* refactor(ui/react/styles): vars.css.ts를 theme.css.ts로 통합 * feat(ui/react/styles): index.ts에 theme.css.ts 추가 * chore(ui/react/package.json): exports에 theme.css.ts 경로 추가 * refactor(ui/react/components): theme.css.ts 변경사항 반영 * refactor(apps/web/components/Layout/Header/styles.css.ts): theme.css.ts 변경사항 반영 * feat(ui/react/styles/enum): color, background-color 삭제 * refactor(ui/react/components/typography): background, color 삭제로 인한 변경사항 반영
- Loading branch information
Showing
20 changed files
with
133 additions
and
237 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
apps/web/src/components/Layout/components/Header/styles.css.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { vars } from '@favolink-ui/react/vars.css'; | ||
import { vars } from '@favolink-ui/react/theme.css'; | ||
import { style } from '@vanilla-extract/css'; | ||
|
||
export const header = style([ | ||
{ | ||
color: vars.color.archive.coral, | ||
backgroundColor: vars.color.archive.yellow, | ||
color: vars.palette.archiveCoral, | ||
backgroundColor: vars.palette.archiveYellow, | ||
}, | ||
]); |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
4 changes: 2 additions & 2 deletions
4
packages/ui/react/src/components/modal/modal-title.styles.css.ts
This file contains 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
This file contains 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
This file contains 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
This file contains 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
16 changes: 9 additions & 7 deletions
16
packages/ui/react/src/components/typography/heading.styles.css.ts
This file contains 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
Oops, something went wrong.