ghostty/macos/Sources/Helpers/PlusDarkerBlendingModeLayer.m
Pete Schaffner 40cfa1abd4 Add CALayer subclass for use in titlebar tabs
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).
2024-02-08 10:10:40 +01:00

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