Add Apple Dark and Apple Light (#27)

* Add Apple Dark and Apple Light

Apple Dark and Apple Light themes based on the colors of Apple Human Interface Guidelines.

* Create .gitignore

Ignore .DS_Store macOS system files.

* Darken background color
This commit is contained in:
Sebastian 2022-04-28 20:13:30 +02:00 committed by GitHub
parent 5bbea2b260
commit c89f3228d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 232 additions and 0 deletions

24
standard/apple_dark.yaml Normal file
View file

@ -0,0 +1,24 @@
# Colors from https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/color/#system-colors
accent: '#FF9F0A' # Accent color for UI elements SwiftUI systemOrange for dark mode
background: '#1c1c1e' # Terminal background color SwiftUI systemGray6 for dark mode
details: darker # Whether the theme is lighter or darker.
foreground: '#FAFAFA' # The foreground color.
terminal_colors: # Ansi escape colors.
bright:
black: '#1C1C1E' # SwiftUI systemGray6 for dark mode
blue: '#007AFF' # SwiftUI systemBlue for light mode
cyan: '#32ADE6' # SwiftUI systemCyan for light mode
green: '#34C759' # SwiftUI systemGreen for light mode
magenta: '#FF2DDE' # SwiftUI systemPink with blue of systemPurple for light mode
red: '#FF3B30' # SwiftUI systemRed for light mode
white: '#F2F2F7' # SwiftUI systemGray6 for light mode
yellow: '#FFCC00' # SwiftUI systemYellow for light mode
normal:
black: '#1C1C1E' # SwiftUI systemGray6 for dark mode
blue: '#0A84FF' # SwiftUI systemBlue for dark mode
cyan: '#64D2FF' # SwiftUI systemCyan for dark mode
green: '#30D158' # SwiftUI systemGreen for dark mode
magenta: '#FF37F2' # SwiftUI systemPink with blue of systemPurple for dark mode
red: '#FF453A' # SwiftUI systemRed for dark mode
white: '#F2F2F7' # SwiftUI systemGray6 for light mode
yellow: '#FFD60A' # SwiftUI systemYellow for dark mode