Skip to content

Commit

Permalink
[ADD] #63 : gray7c
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Dec 23, 2023
1 parent d867e67 commit 46725ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions core/designsystem/src/main/java/com/wap/designsystem/Color.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ val Gray82 = Color(0xFF828282)
val GrayBD = Color(0xFFBDBDBD)
val GrayF4 = Color(0xFFF4F4F4)
val GrayA2 = Color(0xFFA2A2A2)
val Gray7C = Color(0xFF7C7C7C)
val Yellow34 = Color(0xFFFBCF34)
val Yellow3C = Color(0xFFFFBD3C)
val YellowA4 = Color(0xFFFEEBA4)
Expand All @@ -37,6 +38,7 @@ class WappColor(
grayF4: Color = GrayF4,
grayBD: Color = GrayBD,
gray82: Color = Gray82,
gray7C: Color = Gray7C,
yellow34: Color = Yellow34,
yellow3C: Color = Yellow3C,
yellowA4: Color = YellowA4,
Expand Down Expand Up @@ -66,6 +68,8 @@ class WappColor(
private set
var gray82 by mutableStateOf(gray82)
private set
var gray7C by mutableStateOf(gray7C)
private set
var yellow34 by mutableStateOf(yellow34)
private set
var yellow3C by mutableStateOf(yellow3C)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ internal fun WappProfileCard(

Role.GUEST -> {
position = stringResource(R.string.guest)
githubImage = drawable.ic_manager_github
catImage = drawable.ic_manager_cat
githubImage = drawable.ic_guest_github
catImage = drawable.ic_guest_cat
brush = Brush.horizontalGradient(
listOf(
WappTheme.colors.blue2FF,
WappTheme.colors.grayA2,
WappTheme.colors.blue4FF,
WappTheme.colors.blue1FF,
),
Expand Down

0 comments on commit 46725ae

Please sign in to comment.