From 38ee4990cf9a940a3dcc4b65c4abc894c1279229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulrich=20B=C3=A4r?= <93376232+UBaer21@users.noreply.github.com> Date: Fri, 27 Dec 2024 20:07:24 +0100 Subject: [PATCH] Update icon-nightly.scad (moon color) more yellowish for better contrast on gray window background --- resources/icons/icon-nightly.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/icons/icon-nightly.scad b/resources/icons/icon-nightly.scad index 6c5a2283afc..125a3dd5c98 100644 --- a/resources/icons/icon-nightly.scad +++ b/resources/icons/icon-nightly.scad @@ -1,8 +1,8 @@ RES=100; Logo(50, RES); -colorValueR=246/255; -colorValueG=241/255; -colorValueB=200/255; +colorValueR=255/255; +colorValueG=250/255; +colorValueB=100/255; module Logo(size=50, $fn=100) { hole = size/2; @@ -24,7 +24,7 @@ module Logo(size=50, $fn=100) { difference(){ color ([colorValueR,colorValueG,colorValueB, .75])rotate([90, 0, 0]) cylinder(d=hole, h=54, center=true); - color ([129/255,127/255,106/255, .85])translate ([6.5,0,0]) rotate([90, 0, 0]) cylinder(d=hole*0.8, h=cylinderHeight, center=true); + color ([colorValueR*0.5,colorValueG*0.5,colorValueB*0.5, .85])translate ([6.5,0,0]) rotate([90, 0, 0]) cylinder(d=hole*0.8, h=cylinderHeight, center=true); } }