Skip to content

Commit

Permalink
Merge pull request #158 from wisemuji/feature/#157
Browse files Browse the repository at this point in the history
  • Loading branch information
wisemuji authored Jul 31, 2023
2 parents 71e43dd + 90afc87 commit 1c9a4df
Showing 1 changed file with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.droidknights.app2023.core.designsystem.theme.DarkGray
import com.droidknights.app2023.core.designsystem.theme.Green01
import com.droidknights.app2023.core.designsystem.theme.Green04
import com.droidknights.app2023.core.designsystem.theme.KnightsTheme
import com.droidknights.app2023.core.designsystem.theme.LightGray
import com.droidknights.app2023.core.designsystem.theme.Yellow03A40
import com.droidknights.app2023.core.designsystem.theme.Yellow04

@Composable
fun TextChip(
Expand Down Expand Up @@ -43,18 +49,18 @@ private fun TextChipPreview() {
Column(verticalArrangement = Arrangement.spacedBy(4.dp)) {
TextChip(
"카테고리",
containerColor = Color(0xFF5D5D5D),
labelColor = Color(0xFFDCDCDC),
containerColor = DarkGray,
labelColor = LightGray,
)
TextChip(
"Track 02",
containerColor = Color(0xFFA1ED00),
labelColor = Color(0xFF386524),
containerColor = Green01,
labelColor = Green04,
)
TextChip(
"16:45 발표",
containerColor = Color(0xFFD9F899),
labelColor = Color(0xFF386524),
containerColor = Yellow03A40,
labelColor = Yellow04,
)
}
}
Expand Down

0 comments on commit 1c9a4df

Please sign in to comment.