mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-06-01 21:18:38 +03:00

It uses a private compositing filter to match what the sytem does to color unselected tabs in the window's tab bar (specifically with a light appearance).
10 lines
273 B
Objective-C
10 lines
273 B
Objective-C
#import "PlusDarkerBlendingModeLayer.h"
|
|
|
|
@implementation PlusDarkerBlendingModeLayer
|
|
|
|
// A private compositing filter ("plus darker") that is used in titlebar
|
|
// tab bars to create the effect of recessed, unselected tabs.
|
|
- (id)compositingFilter { return @"plusD"; }
|
|
|
|
@end
|