Add orange and purple colors to Colors.kt

This commit is contained in:
Username404-59 2021-06-03 16:54:00 +02:00
parent 87106d4e7a
commit 301aa0cc89
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 3 additions and 1 deletions

View File

@ -7,5 +7,7 @@ enum class Colors(val hexValue: Int) {
GOLD(0xe69500),
BLUE(0x6C9E9D),
RED(0x660000),
GREEN(0x00FF7F)
GREEN(0x00FF7F),
ORANGE(0xf18e33),
PURPLE(0xA97BFF)
}