From f68041bddb3551dbb6dfa9c2e02705f886bfbdb6 Mon Sep 17 00:00:00 2001 From: Daniele Verducci Date: Sun, 1 Feb 2026 09:54:53 +0100 Subject: [PATCH] Fixed colors --- enclosure/printables/bottom.scad | 2 +- enclosure/test_fit.scad | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/enclosure/printables/bottom.scad b/enclosure/printables/bottom.scad index d89aded..c470754 100644 --- a/enclosure/printables/bottom.scad +++ b/enclosure/printables/bottom.scad @@ -1,3 +1,3 @@ use <../fabula_enclosure.scad> -fabula_enclosure_bottom(); +rotate([0, 180, 0]) fabula_enclosure_bottom(); diff --git a/enclosure/test_fit.scad b/enclosure/test_fit.scad index 669e404..aa7f6a9 100644 --- a/enclosure/test_fit.scad +++ b/enclosure/test_fit.scad @@ -7,10 +7,10 @@ use explode_view = false; -color_buttons_vol = "#814abd"; +color_buttons_vol = "#ffad00"; color_buttons_track = "#ff3100"; color_bottom = "#fff"; -color_top = "#ffad00"; +color_top = "#814abd"; module test_fit_components() { @@ -21,16 +21,15 @@ module test_fit_components() { // Components that require cutout on external shell translate([-29, -71.5, 1]) rotate([0, 0, 90]) li_ion_4056_charger_module(); - color("#000") translate([-5, -92, 10]) rotate([90, 0, 0]) switch(); + color("#444") translate([-5, -92, 10]) rotate([90, 0, 0]) switch(); color(color_buttons_vol) translate([-13.4, -20.1, 41.5]) vol_up_keycap(); color(color_buttons_track) translate([12.6, -35.6, 41.5]) next_keycap(); color(color_buttons_track) translate([-23.4, -44.6, 41.5]) prev_keycap(); color(color_buttons_vol) translate([2.05, -61.05, 41.5]) vol_down_keycap(); // Components mounted on the external shell - color("#fff") translate([0, 50, 45]) character_retainer_ring(); - //translate([24, 0, 38]) rotate([0, 0, -90]) status_led_diffuser(); - color(color_top) translate([51, 10, 30]) rotate([90, 0, 0]) rotate([0, 270, 0]) sdcard_access_port(); + color("#fff") translate([0, 50, explode_view ? 100 + 45 : 45]) character_retainer_ring(); + color(color_top) translate([explode_view ? 80 : 51, 10, explode_view ? 79 + 30 : 30]) rotate([90, 0, 0]) rotate([0, 270, 0]) sdcard_access_port(); } test_fit_components();