Skip to content

Commit

Permalink
Update icon-nightly.scad (moon color)
Browse files Browse the repository at this point in the history
more yellowish for better contrast on gray window background
  • Loading branch information
UBaer21 authored Dec 27, 2024
1 parent 28c5405 commit 38ee499
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/icons/icon-nightly.scad
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -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);
}
}

Expand Down

0 comments on commit 38ee499

Please sign in to comment.