We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56ff9d1 commit cb64c1fCopy full SHA for cb64c1f
core/common/src/main/kotlin/com/ninecraft/booket/core/common/extensions/Emotion.kt
@@ -7,16 +7,16 @@ fun Emotion.toTextColor(): Color {
7
return when (this) {
8
Emotion.WARM -> Color(0xFFE3931B)
9
Emotion.JOY -> Color(0xFFEE6B33)
10
- Emotion.SAD -> Color(0xFF9A55E4)
11
- Emotion.INSIGHT -> Color(0xFF2872E9)
+ Emotion.SAD -> Color(0xFF2872E9)
+ Emotion.INSIGHT -> Color(0xFF9A55E4)
12
}
13
14
15
fun Emotion.toBackgroundColor(): Color {
16
17
Emotion.WARM -> Color(0xFFFFF5D3)
18
Emotion.JOY -> Color(0xFFFFEBE3)
19
- Emotion.SAD -> Color(0xFFF3E8FF)
20
- Emotion.INSIGHT -> Color(0xFFE1ECFF)
+ Emotion.SAD -> Color(0xFFE1ECFF)
+ Emotion.INSIGHT -> Color(0xFFF3E8FF)
21
22
0 commit comments