Files
wehub-resource-sync 1d1286fadb
Build / Build and test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:18:38 +08:00

57 lines
1.4 KiB
Swift

import SwiftUI
import MacToolsPluginKit
enum SettingsStyle {
static var windowBackground: Color {
PluginSettingsTheme.Palette.windowBackground
}
static var sidebarBackground: Color {
PluginSettingsTheme.Palette.sidebarBackground
}
static var contentBackground: Color {
PluginSettingsTheme.Palette.contentBackground
}
static var cardBackground: Color {
PluginSettingsTheme.Palette.cardBackground
}
static var recessedControlBackground: Color {
PluginSettingsTheme.Palette.recessedControlBackground
}
static var fieldBackground: Color {
PluginSettingsTheme.Palette.fieldBackground
}
static var keycapBackground: Color {
PluginSettingsTheme.Palette.keycapBackground
}
static var separator: Color {
PluginSettingsTheme.Palette.separator
}
static var cardBorder: Color {
PluginSettingsTheme.Palette.cardBorder
}
static var sidebarHoverBackground: Color {
PluginSettingsTheme.Palette.sidebarHoverBackground
}
static var sidebarSelectionBackground: Color {
PluginSettingsTheme.Palette.sidebarSelectionBackground
}
static var activeControlBackground: Color {
PluginSettingsTheme.Palette.activeControlBackground
}
static var recordingBackground: Color {
PluginSettingsTheme.Palette.recordingBackground
}
}