blob: 0130326d09a8a63b8cb92c844cd91845819a7e00 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package moe.nea.firmament.util
import io.github.notenoughupdates.moulconfig.ChromaColour
import java.awt.Color
fun ChromaColour.getRGBAWithoutAnimation() =
Color(ChromaColour.specialToSimpleRGB(toLegacyString()), true)
fun Color.toChromaWithoutAnimation(timeForFullRotationInMillis: Int = 0) =
ChromaColour.fromRGB(red, green, blue, timeForFullRotationInMillis, alpha)
|