Chore/#37: 디자인 시스템 등록 - #46
Merged
Hidden character warning
The head ref may contain hidden characters: "chore/37-\ub514\uc790\uc778-\uc2dc\uc2a4\ud15c-\ub4f1\ub85d"
Merged
Conversation
Closed
3 tasks
Contributor
There was a problem hiding this comment.
Pull request overview
This PR establishes a design system for the TinyBite project by adding color and typography utilities. The implementation provides a structured approach to managing design tokens and font loading, making it easier to maintain consistent styling across the application.
- Added color palette with main, sub, background, and semantic colors (gray, green, red)
- Implemented typography system with predefined text styles and font scales for titles and body text
- Integrated Pretendard font family with expo-font loading system
Reviewed changes
Copilot reviewed 6 out of 16 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| TinyBite/styles/colors.ts | Defines the color palette with primary, semantic, and neutral colors |
| TinyBite/styles/typography/scale.ts | Defines font size and line height scales for title and body text styles |
| TinyBite/styles/typography/textStyles.ts | Combines font scales with Pretendard font families to create reusable text styles |
| TinyBite/app/index.tsx | Adds font loading with useFonts hook and updates splash screen logic to wait for fonts |
| TinyBite/app.json | Registers expo-font plugin for font loading support |
| TinyBite/package.json | Updates expo-font dependency from 14.0.9 to 14.0.10 |
| TinyBite/package-lock.json | Updates package lock with new expo-font version |
Files not reviewed (1)
- TinyBite/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Collaborator
|
제가 11시 59분 전까지 제 pr부분 수정해보겠습니다! |
Collaborator
Author
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.

⚙️ Related ISSUE Number
#37
📄 Work Description
색상 및 텍스트 스타일 디자인 시스템 설정을 추가했습니다.
색상 시스템 사용 방법
import { colors } from "@/styles/colors";import 후 아래 변경 사항처럼 사용텍스트 스타일 시스템 사용 방법
import { textStyles } from "@/styles/typography/textStyles";import 후 아래 변경 사항처럼 사용styles.socialText: 기존 StyleSheet의 styles에서 가져온 스타일textStyles.title18_SB135: font-family, font-size, font-weight, line-height를 한 번에 설정하는 스타일 (텍스트 컬러는 별도 설정!!!!!)[타이틀/18/SB_135]가
title18_SB135가 된 이유는! 추가로 font-style은 기본 설정이 normal이라서 italic 같은 값으로 특별히 지정된 게 아니면 스타일 명시하지 않음
📷 Screenshot
💬 To Reviewers
디자인 시스템 적용은 2025/12/13 23:59부터 2025/12/14 03:00 사이에 진행하려고 하는데 괜찮을까요? 이 작업을 하기 위해선 나머지 pr들이 모두 머지된 상태여야해서요! 혹은 디자인 시스템 적용 시간을 조금 더 늦출까요?
🔗 Reference
Expo Font