From 301aa0cc89edf808820552a9d0f5a238c53c2fa6 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Thu, 3 Jun 2021 16:54:00 +0200 Subject: [PATCH] Add orange and purple colors to Colors.kt --- .../main/kotlin/fr/username404/snowygui/gui/feature/Colors.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/src/main/kotlin/fr/username404/snowygui/gui/feature/Colors.kt b/common/src/main/kotlin/fr/username404/snowygui/gui/feature/Colors.kt index 3a7365d..9e11a6e 100644 --- a/common/src/main/kotlin/fr/username404/snowygui/gui/feature/Colors.kt +++ b/common/src/main/kotlin/fr/username404/snowygui/gui/feature/Colors.kt @@ -7,5 +7,7 @@ enum class Colors(val hexValue: Int) { GOLD(0xe69500), BLUE(0x6C9E9D), RED(0x660000), - GREEN(0x00FF7F) + GREEN(0x00FF7F), + ORANGE(0xf18e33), + PURPLE(0xA97BFF) }