Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

prompt: brighter commit button text, tighter horizontal padding

- Bump text alpha from 128 to 200 for up-to-date and behind states
- Reduce TextButtonSmall padX from 2 to 1

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+6 -6
+2 -2
system/public/aesthetic.computer/disks/prompt.mjs
··· 6800 6800 : [ 6801 6801 [40, 35, 20, 128], // fill: dark orange (behind) 6802 6802 [80, 70, 40, 128], // outline: lighter orange 6803 - 128, // text alpha 6803 + 200, // text alpha 6804 6804 [40, 35, 20, 128] 6805 6805 ] 6806 6806 : isHover ··· 6813 6813 : [ 6814 6814 [20, 25, 30, 128], // fill: dark blue/gray (up-to-date) 6815 6815 [40, 50, 60, 128], // outline: lighter blue/gray 6816 - 128, // text alpha 6816 + 200, // text alpha 6817 6817 [20, 25, 30, 128] 6818 6818 ]; 6819 6819 commitBtn.paint($, colors);
+4 -4
system/public/aesthetic.computer/lib/ui.mjs
··· 692 692 (btn.stickyScrubbing && btn.down) || 693 693 (btn.offScreenScrubbing && btn.down && horizontallyWithinForOffScreen) 694 694 ) { 695 - callbacks.scrub?.(btn); 696 - } 697 - } 695 + callbacks.scrub?.(btn); 696 + } 697 + } 698 698 699 699 // 5. Rollout: Run a rollout event if dragged off. 700 700 if ( ··· 1030 1030 // MatrixChunky8: 4px char width, 7px char height 1031 1031 #cw = 4; 1032 1032 #ch = 7; 1033 - #padX = 2; // Horizontal padding 1033 + #padX = 1; // Horizontal padding 1034 1034 #padY = 2; // Vertical padding 1035 1035 #offset; 1036 1036