File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
presentation/src/main/java/com/everymeal/presentation Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import androidx.compose.ui.unit.sp
18
18
import com.everymeal.presentation.R
19
19
import com.everymeal.presentation.ui.theme.Gray200
20
20
import com.everymeal.presentation.ui.theme.Main100
21
+ import com.everymeal.presentation.ui.theme.Main800
21
22
22
23
@Composable
23
24
fun EveryMealMainButton (
@@ -30,7 +31,10 @@ fun EveryMealMainButton(
30
31
.fillMaxWidth()
31
32
.padding(vertical = 16 .dp),
32
33
shape = RoundedCornerShape (12 .dp),
33
- colors = ButtonDefaults .buttonColors(containerColor = if (enabled) Main100 else Gray200 ),
34
+ colors = ButtonDefaults .buttonColors(
35
+ containerColor = if (enabled) Main100 else Gray200 ,
36
+ contentColor = Main800
37
+ ),
34
38
enabled = enabled,
35
39
onClick = onClick,
36
40
) {
Original file line number Diff line number Diff line change @@ -16,4 +16,5 @@ val Gray300 = Color(0xFFF2F4F6)
16
16
val Gray500 = Color (0xFFB0B8C1 )
17
17
var Gray800 = Color (0xFF4E5968 )
18
18
19
- val Main100 = Color (0xFFFF4848 )
19
+ val Main100 = Color (0xFFFF4848 )
20
+ val Main800 = Color (0xFFCC3939 )
You can’t perform that action at this time.
0 commit comments