cute launcher: better coloring

master
kkayam 2025-02-19 10:18:14 +00:00
parent 21c88fa9c1
commit af82450254
3 changed files with 3 additions and 2 deletions

View File

@ -2,3 +2,4 @@
0.28: Adjusted icon size to better fit with native dimensions (48x48) 0.28: Adjusted icon size to better fit with native dimensions (48x48)
0.29: Draw function optimization 0.29: Draw function optimization
0.30: Refine initial scrollbar position 0.30: Refine initial scrollbar position
0.31: Coloring for scrollbar

View File

@ -112,7 +112,7 @@
function initScrollIndicator() { function initScrollIndicator() {
overlay.setBgColor(g.theme.bg).clear(); overlay.setBgColor(g.theme.bg).clear();
const points = createRoundedRectPoints(0, 0, overlayWidth, overlayHeight, 10); const points = createRoundedRectPoints(0, 0, overlayWidth, overlayHeight, 10);
overlay.setColor(g.theme.fg2).fillPoly(points); overlay.setColor(g.theme.bgH).fillPoly(points);
// Add horizontal lines for scroll thumb aesthetic with outlines // Add horizontal lines for scroll thumb aesthetic with outlines
const lineY1 = overlayHeight / 3; const lineY1 = overlayHeight / 3;

View File

@ -2,7 +2,7 @@
"id": "cutelauncher", "id": "cutelauncher",
"name": "Cute Launcher", "name": "Cute Launcher",
"shortName": "Cute Launcher", "shortName": "Cute Launcher",
"version": "0.30", "version": "0.31",
"description": "A simple launcher app for Bangle.js 2 that makes use of the full touchscreen", "description": "A simple launcher app for Bangle.js 2 that makes use of the full touchscreen",
"icon": "app.png", "icon": "app.png",
"type": "launch", "type": "launch",