Skip to content

Commit

Permalink
New new icon, more tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanMathy committed Jul 9, 2021
1 parent 6705e51 commit 90df767
Show file tree
Hide file tree
Showing 13 changed files with 6 additions and 2 deletions.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Boop/Boop/Assets.xcassets/AppIcon.appiconset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Boop/Boop/Editor/Themes/Colors.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ struct ColorPair {
static let popover = ColorPair(light: .init(white: 0.95, alpha: 1), dark: .init(white: 0.12, alpha: 1))

static let comments = ColorPair(light: Colors.commentGreyDarkest, dark: Colors.commentGreyDarkest)
static let separator = ColorPair(light: .init(white: 220/255, alpha: 1), dark: .init(white: 35/255, alpha: 1))
static let separator = ColorPair(light: .init(white: 220/255, alpha: 1), dark: .init(white: 45/255, alpha: 1))
static let background = ColorPair(light: .init(white: 0.95, alpha: 1), dark: .init(white: 31/255, alpha: 1))
static let overlayColor = ColorPair(light: NSColor(calibratedWhite: 0.85, alpha: 0.6), dark: NSColor(calibratedWhite: 0.08, alpha: 0.6))
static let popoverBorder = ColorPair(light: .init(white: 170/255, alpha: 1), dark: .init(white: 100/255, alpha: 1))
Expand Down
4 changes: 4 additions & 0 deletions Boop/Boop/Views/PopoverContainerView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class PopoverContainerView: NSView {
dropShadow.shadowOffset = NSMakeSize(0, -20.0)
dropShadow.shadowBlurRadius = 10.0


self.layer?.borderWidth = 0.5
self.layer?.borderColor = NSColor.black.cgColor

self.shadow = dropShadow

self.isHidden = true
Expand Down
2 changes: 1 addition & 1 deletion Boop/Boop/Views/PopoverView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class PopoverView: NSView {
self.layer?.cornerRadius = 12.0
self.layer?.masksToBounds = true

self.layer?.borderWidth = 1
self.layer?.borderWidth = 1.5

self.setBackground()

Expand Down

0 comments on commit 90df767

Please sign in to comment.