-
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.
* [build] kotlin-Serialization id 수정 * [init] network 모듈 * [build] hilt : migrate from kapt to ksp * [build] kotlin config * [build] testing 모듈에 JVM 플러그인 적용 * [build] ksp, hilt verson up * [build] Build-logic refactoring * [feat] : app 모듈 theme 패키지 제거 * [refactor] : Application과 App 분리 * [refactor] : FunchButtonTextField 포커스 삭제 및 backgroundColor 파라미터 추가 * [feat] : string 리소스 추가 * [feat] : color 추가 (임시) - 디자인 시스템 완성시 교체 * [feat] : 매칭코드, 나의코드, 내프로필 카드 UI 제작 * [refactor] : 카드 고정값 제거, 내프로필 카드 verticalPadding 12.5f.dp로 변경 * [feat] : 내 프로필 조회 카드 UI 추가 * [chore] : reformat * [chore] : reformat * [chore] : app 모듈 Color 파일명 Colors로 변경 * [refactor] : 내 프로필 카드 clip 추가 및 clickable에서 clickableSingle로 변경 * [refactor] : 매칭 카드 고정 높이 제거 * [refactor] : string resouce 이름 변경 * [refactor] : annotatedString 에서 Text Composable 함수 사용으로 변경 * [feat] : 각 font에 lineHeightStyle 추가 * [feat] : 코드 Text에 lineHeightStyle 추가 * [refactor] : 프로필 카운트 카드 AnnotatedString 제거 및 Text Composable 함수 사용으로 변경 * [chore] : reformat --------- Co-authored-by: murjune <[email protected]>
- Loading branch information
Showing
12 changed files
with
392 additions
and
166 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.moya.funch.theme | ||
|
||
import androidx.compose.ui.graphics.Color | ||
|
||
internal val Coral500 = Color(0xFFF86E6F) | ||
internal val Lemon500 = Color(0xFFFFE83B) | ||
internal val Lemon600 = Color(0xFFE1CA13) | ||
internal val Lemon900 = Color(0xFF90720A) | ||
internal val Yellow500 = Color(0xFFFFD240) | ||
internal val Yellow600 = Color(0xFFE1B012) | ||
internal val White = Color(0xFFFFFFFF) | ||
internal val Gray900 = Color(0xFF151515) | ||
internal val Gray800 = Color(0xFF242627) | ||
internal val Gray700 = Color(0xFF2C2C2C) | ||
internal val Gray600 = Color(0xFF363636) | ||
internal val Gray500 = Color(0xFF404040) | ||
internal val Gray400 = Color(0xFF6D6D6D) | ||
internal val Gray300 = Color(0xFF9B9B9B) |
Oops, something went wrong.