mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
Various theme improvements
This commit is contained in:
parent
7998f29f4e
commit
e5f15bf084
@ -185,27 +185,16 @@ public func customizeDefaultDayTheme(theme: PresentationTheme, specialMode: Bool
|
|||||||
var outgoingCheckColor: UIColor?
|
var outgoingCheckColor: UIColor?
|
||||||
|
|
||||||
if !day {
|
if !day {
|
||||||
let bubbleStrokeColor = serviceBackgroundColor?.withMultiplied(hue: 0.999, saturation: 1.667, brightness: 1.1).withAlphaComponent(0.2)
|
if let outgoingAccent = outgoingAccent {
|
||||||
incomingBubbleStrokeColor = bubbleStrokeColor
|
outgoingBubbleStrokeColor = outgoingAccent.withAlphaComponent(0.2)
|
||||||
outgoingBubbleStrokeColor = bubbleStrokeColor
|
} else {
|
||||||
|
let bubbleStrokeColor = serviceBackgroundColor?.withMultiplied(hue: 0.999, saturation: 1.667, brightness: 1.1).withAlphaComponent(0.2)
|
||||||
|
incomingBubbleStrokeColor = bubbleStrokeColor
|
||||||
|
outgoingBubbleStrokeColor = bubbleStrokeColor
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !bubbleColors.isEmpty {
|
if !bubbleColors.isEmpty {
|
||||||
//var topBubbleColor = UIColor(rgb: bubbleColors[0])
|
|
||||||
//var bottomBubbleColor = UIColor(rgb: bubbleColors.last ?? bubbleColors[0])
|
|
||||||
|
|
||||||
/*if topBubbleColor.rgb != bottomBubbleColor.rgb {
|
|
||||||
let topBubbleColorLightness = topBubbleColor.lightness
|
|
||||||
let bottomBubbleColorLightness = bottomBubbleColor.lightness
|
|
||||||
if abs(topBubbleColorLightness - bottomBubbleColorLightness) > 0.7 {
|
|
||||||
if topBubbleColorLightness > bottomBubbleColorLightness {
|
|
||||||
topBubbleColor = topBubbleColor.withMultiplied(hue: 1.0, saturation: 1.0, brightness: 0.85)
|
|
||||||
} else {
|
|
||||||
bottomBubbleColor = bottomBubbleColor.withMultiplied(hue: 1.0, saturation: 1.0, brightness: 0.85)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
outgoingBubbleFillColors = bubbleColors.map(UIColor.init(rgb:))
|
outgoingBubbleFillColors = bubbleColors.map(UIColor.init(rgb:))
|
||||||
|
|
||||||
if day {
|
if day {
|
||||||
|
@ -3920,7 +3920,7 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G
|
|||||||
useDarkAppearance = darkAppearancePreview
|
useDarkAppearance = darkAppearancePreview
|
||||||
}
|
}
|
||||||
let customTheme = useDarkAppearance ? theme.darkTheme : theme.theme
|
let customTheme = useDarkAppearance ? theme.darkTheme : theme.theme
|
||||||
if let settings = customTheme.settings, let theme = makePresentationTheme(settings: settings, specialMode: true) {
|
if let settings = customTheme.settings, let theme = makePresentationTheme(settings: settings) {
|
||||||
presentationData = presentationData.withUpdated(theme: theme)
|
presentationData = presentationData.withUpdated(theme: theme)
|
||||||
presentationData = presentationData.withUpdated(chatWallpaper: theme.chat.defaultWallpaper)
|
presentationData = presentationData.withUpdated(chatWallpaper: theme.chat.defaultWallpaper)
|
||||||
}
|
}
|
||||||
|
@ -1309,7 +1309,7 @@ class ChatMessageAnimatedStickerItemNode: ChatMessageItemView {
|
|||||||
additionalAnimationNode?.removeFromSupernode()
|
additionalAnimationNode?.removeFromSupernode()
|
||||||
}
|
}
|
||||||
additionalAnimationNode.frame = animationNode.frame.insetBy(dx: -animationNode.frame.width, dy: -animationNode.frame.height)
|
additionalAnimationNode.frame = animationNode.frame.insetBy(dx: -animationNode.frame.width, dy: -animationNode.frame.height)
|
||||||
// .offsetBy(dx: incoming ? animationNode.frame.width : -animationNode.frame.width, dy: 0.0)
|
.offsetBy(dx: incoming ? animationNode.frame.width - 10.0 : -animationNode.frame.width + 10.0, dy: 0.0)
|
||||||
if incoming {
|
if incoming {
|
||||||
additionalAnimationNode.transform = CATransform3DMakeScale(-1.0, 1.0, 1.0)
|
additionalAnimationNode.transform = CATransform3DMakeScale(-1.0, 1.0, 1.0)
|
||||||
}
|
}
|
||||||
|
@ -179,7 +179,7 @@ final class ChatRecentActionsController: TelegramBaseController {
|
|||||||
if let themeEmoticon = themeEmoticon, let theme = chatThemes.first(where: { $0.emoji == themeEmoticon }) {
|
if let themeEmoticon = themeEmoticon, let theme = chatThemes.first(where: { $0.emoji == themeEmoticon }) {
|
||||||
let useDarkAppearance = presentationData.theme.overallDarkAppearance
|
let useDarkAppearance = presentationData.theme.overallDarkAppearance
|
||||||
let customTheme = useDarkAppearance ? theme.darkTheme : theme.theme
|
let customTheme = useDarkAppearance ? theme.darkTheme : theme.theme
|
||||||
if let settings = customTheme.settings, let theme = makePresentationTheme(settings: settings, specialMode: true) {
|
if let settings = customTheme.settings, let theme = makePresentationTheme(settings: settings) {
|
||||||
presentationData = presentationData.withUpdated(theme: theme)
|
presentationData = presentationData.withUpdated(theme: theme)
|
||||||
presentationData = presentationData.withUpdated(chatWallpaper: theme.chat.defaultWallpaper)
|
presentationData = presentationData.withUpdated(chatWallpaper: theme.chat.defaultWallpaper)
|
||||||
}
|
}
|
||||||
|
@ -1312,7 +1312,7 @@ public func themeIconImage(account: Account, accountManager: AccountManager<Tele
|
|||||||
themeSignal = .single(makeDefaultPresentationTheme(reference: theme, serviceBackgroundColor: nil))
|
themeSignal = .single(makeDefaultPresentationTheme(reference: theme, serviceBackgroundColor: nil))
|
||||||
} else if case let .cloud(theme) = theme, let settings = theme.theme.settings {
|
} else if case let .cloud(theme) = theme, let settings = theme.theme.settings {
|
||||||
themeSignal = Signal { subscriber in
|
themeSignal = Signal { subscriber in
|
||||||
let theme = makePresentationTheme(mediaBox: accountManager.mediaBox, themeReference: .builtin(PresentationBuiltinThemeReference(baseTheme: settings.baseTheme)), accentColor: UIColor(argb: settings.accentColor), backgroundColors: [], bubbleColors: settings.messageColors, wallpaper: settings.wallpaper, serviceBackgroundColor: nil, specialMode: emoticon, preview: false)
|
let theme = makePresentationTheme(mediaBox: accountManager.mediaBox, themeReference: .builtin(PresentationBuiltinThemeReference(baseTheme: settings.baseTheme)), accentColor: UIColor(argb: settings.accentColor), backgroundColors: [], bubbleColors: settings.messageColors, wallpaper: settings.wallpaper, serviceBackgroundColor: nil, preview: false)
|
||||||
subscriber.putNext(theme)
|
subscriber.putNext(theme)
|
||||||
subscriber.putCompletion()
|
subscriber.putCompletion()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user