Files
singlechat/ios/YpChat/UI/YpChatTheme.swift
Torsten Schulz (local) 810b084e10 Refactor application structure and configuration
- Updated the application namespace and ID from "net.ypchat.app" to "de.ypchat.android" for better alignment with branding.
- Increased Gradle heap size settings to optimize build performance.
- Disabled dependency constraints to simplify dependency management.
- Removed obsolete files related to the previous application structure, including MainActivity, YpChatApp, and various core components, streamlining the codebase.

These changes collectively enhance the application's configuration and structure, improving maintainability and performance.
2026-05-12 14:25:55 +02:00

22 lines
1.2 KiB
Swift

import SwiftUI
/// Farben wie `YpChatRoot.kt`.
enum YpChatTheme {
static let bgApp = Color(red: 0.96, green: 0.97, blue: 0.96)
static let bgShell = Color(red: 0.93, green: 0.95, blue: 0.93)
static let surface = Color.white
static let surfaceSubtle = Color(red: 0.965, green: 0.976, blue: 0.969)
static let surfaceSoftGreen = Color(red: 0.941, green: 0.969, blue: 0.949)
static let surfaceSoftBlue = Color(red: 0.945, green: 0.961, blue: 0.980)
static let surfaceSoftRed = Color(red: 0.984, green: 0.929, blue: 0.929)
static let border = Color(red: 0.843, green: 0.875, blue: 0.851)
static let textStrong = Color(red: 0.094, green: 0.125, blue: 0.106)
static let textMuted = Color(red: 0.388, green: 0.439, blue: 0.404)
static let primary700 = Color(red: 0.141, green: 0.361, blue: 0.227)
static let primary600 = Color(red: 0.184, green: 0.435, blue: 0.275)
static let primary500 = Color(red: 0.239, green: 0.525, blue: 0.329)
static let primary100 = Color(red: 0.906, green: 0.945, blue: 0.918)
static let danger = Color(red: 0.635, green: 0.251, blue: 0.251)
static let bubbleSelf = Color(red: 0.875, green: 0.941, blue: 0.894)
}