VerveDo/app/src/main/kotlin/cn/super12138/todo/constants/GlobalValues.kt
2025-02-05 13:50:36 +08:00

18 lines
No EOL
491 B
Kotlin

package cn.super12138.todo.constants
import cn.super12138.todo.utils.SPDelegates
object GlobalValues {
var dynamicColor: Boolean by SPDelegates(
Constants.PREF_DYNAMIC_COLOR,
Constants.PREF_DYNAMIC_COLOR_DEFAULT
)
var paletteStyle: Int by SPDelegates(
Constants.PREF_PALETTE_STYLE,
Constants.PREF_PALETTE_STYLE_DEFAULT
)
var darkMode: Int by SPDelegates(
Constants.PREF_DARK_MODE,
Constants.PREF_DARK_MODE_DEFAULT
)
}