android, desktop: wallpaper fixes (#4251)

This commit is contained in:
Stanislav Dmitrenko
2024-05-30 13:03:23 +07:00
committed by GitHub
parent b402caeb89
commit 78f7fcc89f

View File

@@ -128,13 +128,16 @@ data UIColors = UIColors
background :: Maybe UIColor,
menus :: Maybe UIColor,
title :: Maybe UIColor,
accentVariant2 :: Maybe UIColor,
sentMessage :: Maybe UIColor,
receivedMessage :: Maybe UIColor
sentReply :: Maybe UIColor,
receivedMessage :: Maybe UIColor,
receivedReply :: Maybe UIColor
}
deriving (Eq, Show)
defaultUIColors :: UIColors
defaultUIColors = UIColors Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing
defaultUIColors = UIColors Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing
newtype UIColor = UIColor String
deriving (Eq, Show)