File tree Expand file tree Collapse file tree
app/src/main/java/com/eatssu/android/presentation/map/component
core/design-system/src/main/java/com/eatssu/design_system/theme Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import androidx.compose.ui.res.stringResource
2020import androidx.compose.ui.unit.dp
2121import com.eatssu.android.R
2222import com.eatssu.design_system.theme.EatssuTheme
23+ import com.eatssu.design_system.theme.Festival
2324import com.eatssu.design_system.theme.Gray300
2425import com.eatssu.design_system.theme.Gray600
2526import com.eatssu.design_system.theme.Primary
@@ -84,7 +85,13 @@ fun PartnershipToggleItem(
8485 onClick : () -> Unit ,
8586 modifier : Modifier = Modifier ,
8687) {
87- val backgroundColor = if (selected) Primary else Color .Transparent
88+ val backgroundColor =
89+ if (selected && (label == stringResource(R .string.partnership_filter_festival)))
90+ Festival
91+ else if (selected)
92+ Primary
93+ else
94+ Color .Transparent
8895 val textColor = if (selected) White else Gray600
8996
9097 Box (
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ val Gray700 = Color(0xFF1F1F1F)
1616// Brand
1717val Primary = Color (0xFF66D4C2 )
1818val Secondary = Color (0xFFEEFBF8 )
19+ val Festival = Color (0xFF97AFFF )
1920
2021// Yellow
2122val Star = Color (0xFFFFC700 )
You can’t perform that action at this time.
0 commit comments