From: Ruben Beltran del Rio Date: Sat, 11 Feb 2023 17:34:48 +0000 (+0100) Subject: Adjust colors and radius X-Git-Tag: 1.0.0~1 X-Git-Url: https://git.r.bdr.sh/rbdr/Flat-Bezel.qsplugin/commitdiff_plain/8f25550f0d360a5bba3a9d7d21ee04633320c99c?ds=sidebyside Adjust colors and radius --- diff --git a/Flat Bezel/BBFlatBezelInterface.m b/Flat Bezel/BBFlatBezelInterface.m index e430de8..bac396f 100644 --- a/Flat Bezel/BBFlatBezelInterface.m +++ b/Flat Bezel/BBFlatBezelInterface.m @@ -40,7 +40,7 @@ [theCell setBackgroundColor:[NSColor clearColor]]; [theCell setFont:[NSFont systemFontOfSize:11 weight:NSFontWeightLight]]; - [theCell setCellRadiusFactor:8]; + [theCell setCellRadiusFactor:4]; [theCell setHighlightColor:[NSColor colorWithRed:1 green:1 blue:1 alpha:.15]]; [theCell setTextColor:[NSColor textColor]]; diff --git a/Flat Bezel/BBObjectCell.m b/Flat Bezel/BBObjectCell.m index 28e79d2..40bde4d 100644 --- a/Flat Bezel/BBObjectCell.m +++ b/Flat Bezel/BBObjectCell.m @@ -14,13 +14,13 @@ NSColor *strokeColor = [NSColor clearColor]; if (isFirstResponder) { - fillColor = [self highlightColor]; + fillColor = [NSColor selectedTextBackgroundColor]; } else { - fillColor = [self backgroundColor]; + fillColor = [NSColor clearColor]; } if (dropTarget) { - fillColor = [NSColor colorWithRed:0.77 green:0.91 blue:0.96 alpha:1]; + fillColor = [NSColor controlAccentColor]; } [fillColor setFill];