lowerCamelCase
This commit is contained in:
parent
574509526d
commit
a64248c0d3
|
@ -32,7 +32,7 @@ struct SettingsView: View {
|
|||
Text("User")
|
||||
Spacer()
|
||||
Text(SessionManager.current.user.username ?? "")
|
||||
.foregroundColor(.JellyfinPurple)
|
||||
.foregroundColor(.jellyfinPurple)
|
||||
}
|
||||
|
||||
NavigationLink(
|
||||
|
@ -42,7 +42,7 @@ struct SettingsView: View {
|
|||
Text("Server")
|
||||
Spacer()
|
||||
Text(ServerEnvironment.current.server.name ?? "")
|
||||
.foregroundColor(.JellyfinPurple)
|
||||
.foregroundColor(.jellyfinPurple)
|
||||
}
|
||||
})
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ struct VideoUpNextView: View {
|
|||
.font(.subheadline)
|
||||
}
|
||||
.frame(width: 120, height: 35)
|
||||
.background(Color.JellyfinPurple)
|
||||
.background(Color.jellyfinPurple)
|
||||
.cornerRadius(10)
|
||||
}.buttonStyle(PlainButtonStyle())
|
||||
.frame(width: 120, height: 35)
|
||||
|
|
|
@ -11,6 +11,6 @@ import SwiftUI
|
|||
|
||||
extension Color {
|
||||
|
||||
static let JellyfinPurple = Color(red: 172 / 255, green: 92 / 255, blue: 195 / 255)
|
||||
static let jellyfinPurple = Color(red: 172 / 255, green: 92 / 255, blue: 195 / 255)
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue