aboutsummaryrefslogtreecommitdiff
path: root/Flat Bezel
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2023-02-11 18:34:48 +0100
committerRuben Beltran del Rio <ruben@unlimited.pizza>2023-02-11 18:34:48 +0100
commit8f25550f0d360a5bba3a9d7d21ee04633320c99c (patch)
tree18441273b918fa252d7e3813534d0d5402d2eee6 /Flat Bezel
parent768e492ea13d8c0f62e0334c4c626db4596a66d8 (diff)
Adjust colors and radius
Diffstat (limited to 'Flat Bezel')
-rw-r--r--Flat Bezel/BBFlatBezelInterface.m2
-rw-r--r--Flat Bezel/BBObjectCell.m6
2 files changed, 4 insertions, 4 deletions
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];