enum class WappleCard(@ColorRes val color: Int, @DrawableRes val image: Int) {
    BLUEBERRY(R.color.green_ddf4ca, R.drawable.ic_home_wapple_blueberry),
    STRAWBERRY(R.color.mint_d2f0ee, R.drawable.ic_home_wapple_strawberry),
    VANILLA(R.color.purple_e0e3ff, R.drawable.ic_home_wapple_vanilla),
    GREENTEA(R.color.yellow_fff5bf, R.drawable.ic_home_wapple_green_tea),
    CHOCO(R.color.pink_ffe3e3, R.drawable.ic_home_wapple_choco)
}