Skip to content

Commit 1f44135

Browse files
committed
corrected notif colors
1 parent edc57a9 commit 1f44135

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/main/java/com/atom/letmein/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class MainActivity : AppCompatActivity() {
128128
.setAutoCancel(false)
129129
.setOngoing(true)
130130
.setOnlyAlertOnce(true)
131-
.setColor(Color.MAGENTA)
131+
.setColor(Color.rgb(55, 0, 179))
132132
.style = Notification.BigTextStyle()
133133
.bigText(description)
134134
notificationManager.notify(code, builder.build())
@@ -149,7 +149,7 @@ class MainActivity : AppCompatActivity() {
149149
.setLargeIcon(BitmapFactory.decodeResource(this.resources, R.drawable.csh_logo))
150150
.setContentTitle(subject)
151151
.setContentText(description)
152-
.setColor(Color.MAGENTA)
152+
.setColor(Color.rgb(55, 0, 179))
153153
.style = Notification.BigTextStyle()
154154
.bigText(description)
155155
notificationManager.notify(code, builder.build())

0 commit comments

Comments
 (0)