Skip to content

Commit

Permalink
[FEAT/#191] Grey 375 추가 및 조회수 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
arinming committed Aug 30, 2024
1 parent 883a1dc commit f8c1be2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ val Grey150 = Color(0xFFE9E9E9)
val Grey200 = Color(0xFFDDDDDD)
val Grey300 = Color(0xFFBCBCBC)
val Grey350 = Color(0xFFADADAD)
val Grey375 = Color(0xFF898989)
val Grey400 = Color(0xFF666666)
val Grey500 = Color(0xFF373737)
val Black = Color(0xFF171717)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import com.terning.core.designsystem.component.image.TerningImage
import com.terning.core.designsystem.theme.Black
import com.terning.core.designsystem.theme.Grey400
import com.terning.core.designsystem.theme.Grey375
import com.terning.core.designsystem.theme.TerningMain
import com.terning.core.designsystem.theme.TerningSub3
import com.terning.core.designsystem.theme.TerningTheme
Expand Down Expand Up @@ -77,8 +77,8 @@ fun InternTitle(
)
Text(
text = stringResource(id = R.string.intern_view_count_detail, viewCount),
style = TerningTheme.typography.button4,
color = Grey400,
style = TerningTheme.typography.detail2,
color = Grey375,
)
}
}
Expand Down

0 comments on commit f8c1be2

Please sign in to comment.