lowerCamelCase

This commit is contained in:
Ethan Pippin 2021-08-21 10:28:57 -06:00
parent 574509526d
commit a64248c0d3
3 changed files with 4 additions and 4 deletions

View File

@ -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)
}
})

View File

@ -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)

View File

@ -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)
}