Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ksharma-xyz committed Jan 25, 2025
1 parent 5ec0f11 commit 2be54b9
Showing 1 changed file with 0 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,7 @@
package xyz.ksharma.krail.taj.theme

import androidx.compose.runtime.Immutable

val DEFAULT_THEME_STYLE = KrailThemeStyle.Train

/*
@Immutable
data class ThemeColor(
val hexColorCode: String,
val id: Int,
val tagLine: String,
)
*/
enum class KrailThemeStyle(val hexColorCode: String, val id: Int, val tagLine: String) {
Train(
hexColorCode = "#F6891F",
Expand Down Expand Up @@ -45,13 +34,3 @@ enum class KrailThemeStyle(val hexColorCode: String, val id: Int, val tagLine: S
tagLine = "Mah city, mah rules!"
),
}

/*fun getThemeColors(): List<ThemeColor> {
return KrailThemeStyle.entries.map {
ThemeColor(
hexColorCode = it.hexColorCode,
id = it.id,
tagLine = it.tagLine
)
}
}*/

0 comments on commit 2be54b9

Please sign in to comment.