From 0ba3e32a1c0c36ab97c9da1c53c59f58e8a87ae9 Mon Sep 17 00:00:00 2001 From: Magic_Sweepy Date: Fri, 9 Jan 2026 19:17:18 +0800 Subject: [PATCH 1/9] Add short introduction and plan for the ui pack. --- Haigha-UI/ResourcePack/pack.mcmeta | 6 ++++++ README.md | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 Haigha-UI/ResourcePack/pack.mcmeta diff --git a/Haigha-UI/ResourcePack/pack.mcmeta b/Haigha-UI/ResourcePack/pack.mcmeta new file mode 100644 index 0000000..07762b5 --- /dev/null +++ b/Haigha-UI/ResourcePack/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 3, + "description": "Minimalist Modern Style GUI Textures for the GregTech Lite Modpack" + } +} \ No newline at end of file diff --git a/README.md b/README.md index 6d41b28..b9a7565 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,11 @@ This repository consists of all official maintained Resource Packs for the GregT ## Jabberwocky -The **Jabberwocky** is the Jappa Style Resource Packs for the Modpack, it is referenced with textures of **[GTM][GTM]**. +**Jabberwocky** is the Jappa Style Resource Packs for the Modpack, it is referenced with textures of **[GTM][GTM]**. + +## Haigha UI + +**Haigha UI** is the Minimalist Modern Style GUI Resource Packs for the Modpack, it is refereenced with textures of Modern **[AE2][AE2]**. [GTM]: https://github.com/GregTechCEu/GregTech-Modern +[AE2]: https://github.com/AppliedEnergistics/Applied-Energistics-2 \ No newline at end of file From 070570c20601de067ffceb139320e0b30e74c4c1 Mon Sep 17 00:00:00 2001 From: Magic_Sweepy Date: Fri, 9 Jan 2026 19:44:29 +0800 Subject: [PATCH 2/9] Basic GTCEu machine display, background and slot textures. --- .../gregtech/textures/gui/base/background.png | Bin 0 -> 531 bytes .../textures/gui/base/background_bronze.png | Bin 0 -> 532 bytes .../textures/gui/base/background_popup.png | Bin 0 -> 487 bytes .../textures/gui/base/background_steel.png | Bin 0 -> 528 bytes .../assets/gregtech/textures/gui/base/blank.png | Bin 0 -> 119 bytes .../textures/gui/base/blank_transparent.png | Bin 0 -> 120 bytes .../textures/gui/base/bordered_background.png | Bin 0 -> 487 bytes .../textures/gui/base/boxed_background.png | Bin 0 -> 627 bytes .../textures/gui/base/clipboard_background.png | Bin 0 -> 877 bytes .../gui/base/clipboard_paper_background.png | Bin 0 -> 739 bytes .../gregtech/textures/gui/base/darkened_slot.png | Bin 0 -> 221 bytes .../assets/gregtech/textures/gui/base/display.png | Bin 0 -> 305 bytes .../gregtech/textures/gui/base/display_bronze.png | Bin 0 -> 312 bytes .../gregtech/textures/gui/base/display_steel.png | Bin 0 -> 309 bytes .../gregtech/textures/gui/base/fluid_slot.png | Bin 0 -> 134 bytes .../textures/gui/base/fluid_tank_background.png | Bin 0 -> 143 bytes .../textures/gui/base/fluid_tank_overlay.png | Bin 0 -> 362 bytes .../textures/gui/base/indicator_no_energy.png | Bin 0 -> 249 bytes .../gui/base/indicator_no_steam_bronze.png | Bin 0 -> 278 bytes .../gui/base/indicator_no_steam_steel.png | Bin 0 -> 277 bytes .../assets/gregtech/textures/gui/base/slot.png | Bin 0 -> 129 bytes .../gregtech/textures/gui/base/slot_bronze.png | Bin 0 -> 135 bytes .../gregtech/textures/gui/base/slot_dark.png | Bin 0 -> 134 bytes .../gregtech/textures/gui/base/slot_steel.png | Bin 0 -> 139 bytes .../gregtech/textures/gui/base/tank_icon.png | Bin 0 -> 138 bytes .../textures/gui/base/fluid_slot_bronze.png | Bin 0 -> 131 bytes .../textures/gui/base/fluid_slot_steel.png | Bin 0 -> 134 bytes 27 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background_bronze.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background_popup.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background_steel.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/blank.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/blank_transparent.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/bordered_background.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/boxed_background.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/clipboard_background.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/clipboard_paper_background.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/darkened_slot.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_bronze.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_steel.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/fluid_slot.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/fluid_tank_background.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/fluid_tank_overlay.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/indicator_no_energy.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/indicator_no_steam_bronze.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/indicator_no_steam_steel.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/slot.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/slot_bronze.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/slot_dark.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/slot_steel.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/tank_icon.png create mode 100644 Haigha-UI/ResourcePack/assets/gtlitecore/textures/gui/base/fluid_slot_bronze.png create mode 100644 Haigha-UI/ResourcePack/assets/gtlitecore/textures/gui/base/fluid_slot_steel.png diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background.png new file mode 100644 index 0000000000000000000000000000000000000000..770527148d58080c08535f0dd240e982142f4c06 GIT binary patch literal 531 zcmeAS@N?(olHy`uVBq!ia0vp^8-REj2NRI|8a1gONO2Z;L>4nJ@ErnSMo|r~1_lPk zqn<8~Ar*7pUNxL}*g(Yf;(qI82?mOSHuDrXcZl1Oqe*~8k;6%# zMS;UnphroN&~(QfbP0l+XkKsY{6m literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background_bronze.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..1cd916e1f6caee3d7902bf52246fc4a7d3885f10 GIT binary patch literal 532 zcmeAS@N?(olHy`uVBq!ia0vp^8-REj2NRI|8a1gONO2Z;L>4nJ@ErnSMo|r~1_lPk zW1cRKAr*7pUR~(h;wa&Ik^hsm37|*gAGVVJ&0!oQk(@Ik;M!Qd_W1l!;HuCSEMj7 zFwXRJaSW-L^Y)ryA+w`^>%on$H8^@aIL=QM;OKX16i~JPuvxRG`CZ20`Fm#l-EseY zJo6btU%%)Z7tE$!a>@4x_kKAXidEiG>Sbs+mYucatI_u3cdcLHOM N!PC{xWt~$(69CdOhLr#S literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background_steel.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/background_steel.png new file mode 100644 index 0000000000000000000000000000000000000000..3d369e6d25f636bf5041d6ed17f96a2b4c04cc84 GIT binary patch literal 528 zcmeAS@N?(olHy`uVBq!ia0vp^8-REj2NRI|8a1gONO2Z;L>4nJ@ErnSMo|r~1_lPk zL!K^-S@~C5q{_r|SGFA%NwSjc-}^%Jw7 Qz$j+$boFyt=akR{0N%ukUjP6A literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/blank.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/blank.png new file mode 100644 index 0000000000000000000000000000000000000000..598fdc2de573fae8eca9cf331ee73e5fb7c06ad4 GIT binary patch literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx1SBVv2j2s6ii6yp7}lMWc?smOq&xaLGB9lH z=l+w(3gmMZctjR6FbI`^Fyp;6`3j&QkEe@ch(vgDLP7#a3j<@!+5ee97K5j&pUXO@ GgeCxVr5W}B literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/blank_transparent.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/blank_transparent.png new file mode 100644 index 0000000000000000000000000000000000000000..c4694352f9816ba1c515eb09f74b24fd97064a16 GIT binary patch literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx1|;Q0k92}K#X;^)4C~IxyaaMs(j9#r85lP9 zbN@+X1@buyJR*x37=*x>u}5hqJ5Z3<)5S4FB0M<(2!LEx2F5Pq$3O-HgQu&X%Q~lo FCIB>N7)1a8 literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/bordered_background.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/bordered_background.png new file mode 100644 index 0000000000000000000000000000000000000000..052d285291758c618158cbbf3d67cda078d7fa5b GIT binary patch literal 487 zcmeAS@N?(olHy`uVBq!ia0vp^hk>|*gAGVVJ&0!oQk(@Ik;M!Qd_W1l!;HuCSEMj7 zFwXRJaSW-L^Y)ryA+w`^>%on$H8^@aIL=QM;OKX16i~JPuvxRG`CZ20`Fm#l-EseY zJo6btU%%)Z7tE$!a>@4x_kKAXidEiG>Sbs+mYucatI_u3cdcLHOM N!PC{xWt~$(69CdOhLr#S literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/boxed_background.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/boxed_background.png new file mode 100644 index 0000000000000000000000000000000000000000..6978129f0c0168f485bd5cc7bce3a077eb0270ca GIT binary patch literal 627 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5)^RWa$*@8fX&}W};1OBOz`%D9gc)~C%zn$j zz@+Nw;uumf=k2wH6PX-ETrcjAe(b^MFXa49rO{#XF|Llp{X3q|$oqL_?YsHE|JntV zo;g!F@3wKm!N(sh?6yDuywjTX-_5sWvuECaE4kt2Z>AW%>33x}9O8DE#o!^#kjbRr z%dmvA!Gv*w8p9=)QNckQAhPoxSM7cGu0izpnLYR41LN|rc*mCHw7B)xzwzAo$iCQ# V_rZxxl3PJ(%G1@)Wt~$(698gJx$^)3 literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/clipboard_background.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/clipboard_background.png new file mode 100644 index 0000000000000000000000000000000000000000..a77c0bcd262977b7700c7c185daeba2933a78364 GIT binary patch literal 877 zcmeAS@N?(olHy`uVBq!ia0vp^yBHW4**VyNEJ@v%cR-4>z$3Dlfq`2Hgc&d0t^32k zz%1|S;uumf=k2wPzK0VeTmzeJ+-ALLh)_CZ;WM#v536pefY($lR@)F4udFlrh38l1 zgsq-0H&(E@(>faT9VfexQ`TXH`nZ`xzYmzE$eJ?**By4!U{>HmFw>J&(r7?Ww z@Aa%Wozxv)sBp|>SvXmtM5x8D>4K-gsNiUT3`}B3-1omAhEKWdz^a%Mp>^Va|NgNA uCf-x7kTlxz+Wyz=3NveD2*O yr~GmUOa7lWPd-mL?`%gEM!rg9c4@lEFNXaFtTk0O>F0n>WAJqKb6Mw<&;$U|vstkK literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display.png new file mode 100644 index 0000000000000000000000000000000000000000..8cb13fe82b5b0bcfc9c42afec9f07a841d86957a GIT binary patch literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^{Xp!^!2~3aRXC>sDb50q$YKTtzC$3)D5~Mr02F-e z>EaktG3V{wgPeyQ1XvDE4dn8A-4vS9<)C<@PL?-RkjLcry~maF6d%o*`Fmga`3JkV zUQ7SZ_OIaFnbO$Z=^uo*hb{{1j8e^-x?&JAPClGoae}+oowFr;!S@e9?=pD0`njxg HN@xNA?wEV% literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_bronze.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..598744867c1ef9f3d4be0dc41fb76b1da5c38778 GIT binary patch literal 312 zcmeAS@N?(olHy`uVBq!ia0vp^{Xp!^!2~3aRXC>sDb50q$YKTtzC$3)D5~Mr02F-X z>EaktG3V`NLtZCG5!Q?BH~VJw$??uOz`w1anO7v?VQ{XRrTal&weMeQc}26+?#;ie zZSkOT{^xhRe-h80`MRl^_4tpl&M4KasVhPk4Ms+Gn%s7vo1d|F__EYIdwO~=(ANx} Lu6{1-oD!M<2#$M~ literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_steel.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_steel.png new file mode 100644 index 0000000000000000000000000000000000000000..f40352a4d1f216202d54b6a48d9ebac0991fd17e GIT binary patch literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^{Xp!^!2~3aRXC>sDb50q$YKTtzC$3)D5~Mr02F-g z>EaktG3V{&jl9hPA}j~fyL-e=tehD1vQ4OG@%pK0S{9k5^Iz|3>&Q)e_dCwE`Tn`j zf7abQAir(q&F{5edE!2<724``MJsT%%V1<|n`zmX40L5BgZCoV8b7utCxBjN@O1Ta JS?83{1OTSNeenPQ literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/fluid_slot.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/fluid_slot.png new file mode 100644 index 0000000000000000000000000000000000000000..aaed5e743029b2c798cc2432b90c7134eea7ca69 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1SD^+kpz+qoCO|{#S9F5M?jcysy3fAP|(8D z#W6%<;@h)^ybK0BM;x}Fl3{U_TF|fH(Dm@T);)i_yS?!Yp{X-xaw-_#yK1 c29=#}7z6y-T{Nbtb%9LwboFyt=akR{03}!@tN;K2 literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/fluid_tank_background.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/fluid_tank_background.png new file mode 100644 index 0000000000000000000000000000000000000000..740c4ffefb3c444f19083fd6852ec32d42336b8f GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^B0y}#!2~4jec#CdDb50q$YKTtzC$3)D5~Mr02Fle zba4#v=zM$KP>{iZ!};Qc!%W)*x=lo`IPWU?ar1uazm2<#rcX*cHsS8vNvlp(+sQFE oA51Wi;9+Y%_~3lO9+#V}%<-H_p3|9`frc@7y85}Sb4q9e0FLx64gdfE literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/fluid_tank_overlay.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/fluid_tank_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a15eb4b265cfbd4ba0c7f4e33599d6d107cbc70f GIT binary patch literal 362 zcmeAS@N?(olHy`uVBq!ia0vp^B0y}#!3HEZ=vR6JDaPU;cPEB*=VV?2IV|apzK#qG z8~eHcB(eheoCO|{#S9F5he4R}c>anMprAyFYeY$Kep*R+Vo@qXL1JcJiC$i6iGqoq zp`K}qdj!au+nz3tArbCt&pT$ZF!C@T{Q1BB)4rPu1}`pfE6sJjdEv*S=e76iTQ45S zNcr<;UH-3%MiBGD>gE0761+WbYFVdQ&MBb@ E01Wz(g#Z8m literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/indicator_no_energy.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/indicator_no_energy.png new file mode 100644 index 0000000000000000000000000000000000000000..f85d59f2bc86f943554e6ea14c13ade7d6790227 GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSL74G){)!Z!pk#?_L`iUdT1k0gQ7S`0VrE{6US4X6f{C7i zo{`~4h0LiyMVX#1jv*HQZ+jet8Web#fBs*tovIQb%Z9$2Z6e0MS+x8e9vaU0 z%ck*9k*(|MgdNTSN85meYvt>2Zc~l#I|@F1-hA`?m3)J`ZHmf#ErCiv>4hChL4LKY ktx`hDd{fl}e#&W!w_og9;I{Ww0?<+hPgg&ebxsLQ0HAtPPXGV_ literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/indicator_no_steam_bronze.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/indicator_no_steam_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..3d1c5f1f0b3fab7cace76a6da426aeca8a876e92 GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|wj^(N7l!{JxM1({$v_d#0*}aI z1_r*vAk26?e?Q(pX6mSdpYP?fPo2abEj%HwcdLcvzf0mXnIluSt@!lvI6;>1s;*b3=DjSK$uZf!>a)($X?><>&pI+M_yQ%%UP!O6;MdB#5JNMI6tkV zJh3R1p&&6cuS72|wM4;0&p^-6^2)VMDL_RanMprEm* zi(`n!#N{pS_Y4j5q$>*oo85S&Cb4Za0D_29 c0eJ!pY%HvtI*wryKtmWjUHx3vIVCg!05m`*Z~y=R literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/slot_dark.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/slot_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..aaed5e743029b2c798cc2432b90c7134eea7ca69 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1SD^+kpz+qoCO|{#S9F5M?jcysy3fAP|(8D z#W6%<;@h)^ybK0BM;x}Fl3{U_TF|fH(Dm@T);)i_yS?!Yp{X-xaw-_#yK1 c29=#}7z6y-T{Nbtb%9LwboFyt=akR{03}!@tN;K2 literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/slot_steel.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/slot_steel.png new file mode 100644 index 0000000000000000000000000000000000000000..eafa1d998a0aaf958fc9156e9a42c606ba6f2ee5 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?4j!ywFfJby(BP|()X z#WBR9H+jvPHGj@KupT&c;J|@`&(D0jcml)2+a->iJ?p!%dxnNt;*|w~&2GF>v)DEo h0Kth9CjxQ=7;d|>aXMN)+7C2{!PC{xWt~$(69AIiEf@d* literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/tank_icon.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/tank_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b871aee414abc020b57c52f12023632db9ab50e7 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^d_c_4!2~3u%QBUL6lZ})WHC_uFbFdq&tH)O6twYl zaSYLzn4FWKAhyB4z#!t?9nXNfh2`a99IOu?Uw2-!l81-KMgTe~DWM4fBvffE ZW`-5ZS+?76p8Eu3tf#A=%Q~loCIFe|Bu)ST literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gtlitecore/textures/gui/base/fluid_slot_steel.png b/Haigha-UI/ResourcePack/assets/gtlitecore/textures/gui/base/fluid_slot_steel.png new file mode 100644 index 0000000000000000000000000000000000000000..68ebd8a0a5475bba7c7c88bb0b5228387c8cfbd0 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1SD^+kpz+qoCO|{#S9F5M?jcysy3fAP|(8D z#W6%<;@h(uc^M2ijyR}0ElO7YCjZP@?F7$#w;lFBOU&ySL#C#tsWqG_$-mBedRpyK crU_3rv3s?$ZT}XddKP4|r>mdKI;Vst0A;8s1poj5 literal 0 HcmV?d00001 From cd611a1cb399f649e2ccfb542e542e2834474e01 Mon Sep 17 00:00:00 2001 From: Magic_Sweepy Date: Fri, 9 Jan 2026 20:00:36 +0800 Subject: [PATCH 3/9] Basic progress bar and primitive textures. --- .../gui/primitive/primitive_background.png | Bin 0 -> 547 bytes .../gui/primitive/primitive_large_fluid_tank.png | Bin 0 -> 155 bytes .../primitive_large_fluid_tank_overlay.png | Bin 0 -> 1462 bytes .../textures/gui/primitive/primitive_slot.png | Bin 0 -> 135 bytes .../progress_bar_primitive_blast_furnace.png | Bin 0 -> 241 bytes .../gui/progress_bar/progress_bar_arrow.png | Bin 0 -> 254 bytes .../progress_bar/progress_bar_arrow_bronze.png | Bin 0 -> 263 bytes .../progress_bar/progress_bar_arrow_steel.png | Bin 0 -> 254 bytes .../gui/primitive/primitive_fluid_slot.png | Bin 0 -> 135 bytes Haigha-UI/Workflow/ui-theme-color.json | 13 +++++++++++++ 10 files changed, 13 insertions(+) create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_background.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_large_fluid_tank.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_large_fluid_tank_overlay.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_slot.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/progress_bar_primitive_blast_furnace.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/progress_bar/progress_bar_arrow.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/progress_bar/progress_bar_arrow_bronze.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/progress_bar/progress_bar_arrow_steel.png create mode 100644 Haigha-UI/ResourcePack/assets/gtlitecore/textures/gui/primitive/primitive_fluid_slot.png create mode 100644 Haigha-UI/Workflow/ui-theme-color.json diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_background.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_background.png new file mode 100644 index 0000000000000000000000000000000000000000..1f605f01f8b2973a3902165f45dff80997904e1f GIT binary patch literal 547 zcmeAS@N?(olHy`uVBq!ia0vp^8-REj2NRI|8a1gONO2Z;L>4nJ@ErkR#;MwT(hLlY zS3O-ELn`LHy}Hmh!%@WbB6nq93roMM1&^2$X8_Yeqo@TeLPyN+FK`f0$yH$3s69jd znvwCRj=3|N+jqZiw7-4k&i%Nx^A76S*zL`+-~Rmn`|RZ#?wo!4^Nh^8c?b9X*(acW z+&#N|gK!*&lR%3ChoeA~0*fO@lK_k2r~vulv2Fh2M{i2r@|7jcp1J+}`m4q_xZ~M2 io;|bwdOwieogdiB`}K?T%q75BXYh3Ob6Mw<&;$Ub*^+z! literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_large_fluid_tank.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_large_fluid_tank.png new file mode 100644 index 0000000000000000000000000000000000000000..120cd349f435edd03cbf806ced96ae3deb1c1219 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^B0y}#!2~4jec#CdDb50q$YKTtz9S&aI8~cZ8Yt-N z>EamT(fRi5MqY;m3ATsI@#+&_{0}RUVxDo@ByFL2L++aoVO_ibohbP0l+XkKVR$v+ literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_large_fluid_tank_overlay.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_large_fluid_tank_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..f915ea1eb1299f9137b9d80ec6895755966770ef GIT binary patch literal 1462 zcmbVMO^?$?7&cN{0V+sHs1@ZhGMARc9@|O0@qj@~5=aEzZkI@GZ=Ic)B-YvF~M^9?n`yYkf4Yd(mB}~R9 z<#JP)<2VJhrk%SmPAS_G3T=vhnE3juhmUm>a$mn*3#=e*h(Xxi$;7pt)h^rFVjkBo zoJZ%z1PEfGC>qC6l9REoPk9Nfi({;#DMW4g`br@XZ3JtmAv1wo(=wQ4IcV84ZMRx= ztux5691B}DY&(YS601t=Win32|D|Ci&b=;4nO~q>}kS{tI<^{e}Q=Z4i_)_SGehOA)zhZG#zehwO{a zyOUJlb&<0pu=U*%I>y?Uqc(b)M>7C zH=h3W;_e|0efZv!KYzXd{qOgFKD$DW?Jhm~rrvI!?)-T5^%wX4Xn)LKKDzU~vit1W n_6hiYS^BMgBI2CCyt#X_@?huNn+TsRI%}u3+Pr=7t6P5q%`M37 literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_slot.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/primitive_slot.png new file mode 100644 index 0000000000000000000000000000000000000000..9d2702a33576732d29eb05031df7be138343f499 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1SD^+kpz+qoCO|{#X$Nf2s6r_-L(S9u=I3s z4AGdFY-6&2Qe(-1LkA8Ne0bwK>B|l2)te0r3^+a&PR^1RUMc0awKq#T>{f(?gv6JS dRFA7{3~w`8=b8&XVgwq(;OXk;vd$@?2>?}ODOdmi literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/progress_bar_primitive_blast_furnace.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/progress_bar_primitive_blast_furnace.png new file mode 100644 index 0000000000000000000000000000000000000000..f1840461505cfe1e51e5f62024ba6beea38e3a81 GIT binary patch literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^B0wz1!3HFCgzU0`6lZ})WHAE+-w_aIoT|+y4HR7L z>EamT(fM}DMnMM$5tr}Mdo>*V_^l>nJ17WcJSdWV(HO(HO3|SHS)1?&^Ta(Ln#`-K z&ADr)ZPU7Tq4LPISuKhyV_f%pKW1a(;1uO`^Ima5i0Sv%OsBU2^SJ)33Skpi_vW`Wbf=K3eGavsBKSlhTm5 mZ;Np}n}oH^DW5&%`^;jex>|c*X}Ah>E`z75pUXO@geCwI)mf_m literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/progress_bar/progress_bar_arrow.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/progress_bar/progress_bar_arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..940d95eed46d3a9d0ee750ca515e4d15061c3383 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^B0#Lc!3HG%8Q!`Lq&N#aB8wRq_>O=u<5X=vX`tW+ zPZ!4!kIuJO9l4Gu@UUJ;d2wrTWs}T#;U^h89nw{&ED)Q#KcoHUh0u?I7yk+Tjfu*B z{^~D#Z`%P;DYoO=u<5X=vX`tXv zPZ!4!kIuJOck>=L;9vkY4|gb&gkq!UQ9ixCWIITbtxu z{&M_@nI`F;|L2ffYyy92vzQccrpUe8cSB67s!B@gpG?%0PqkOU`j@GD^;$ck|7jWd+?56Xj8u5|f;`;i%Jsww;dL#ZQ0FzQTR#om<-Cyw){9PcV48`njxg HN@xNA!Z>I2 literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/progress_bar/progress_bar_arrow_steel.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/progress_bar/progress_bar_arrow_steel.png new file mode 100644 index 0000000000000000000000000000000000000000..71f2f19dfa7c4e4f87101081e307825b79eb27c0 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^B0#Lc!3HG%8Q!`Lq&N#aB8wRq_>O=u<5X=vX`tW+ zPZ!4!kIuJOPxCS>@~~VeoD%n#0EAQe4TQN3w9hP$j z;Ww_onQy&p%Axm~)>mpbhG)EZdG^AG=LUzn+>OR(c-I+(&%3{5-y7MOv@U-qXQ0~|JYD@<);T3K0RZy< BWC;KO literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gtlitecore/textures/gui/primitive/primitive_fluid_slot.png b/Haigha-UI/ResourcePack/assets/gtlitecore/textures/gui/primitive/primitive_fluid_slot.png new file mode 100644 index 0000000000000000000000000000000000000000..3aee746627e68a90cbf2e543d1bd0cc37757f9d0 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1SD^+kpz+qoCO|{#X$Nf2s6r_-L(S9u=I3s z4AGdF?8CJoRY7)xfq_8>=jVw_o?pG~ufxN`b7#(*CAW^btZEC)U3{x;s+kxYTib8{ dxXG({8O(Uu9%VG{wFMf&;OXk;vd$@?2>|K0D4qZS literal 0 HcmV?d00001 diff --git a/Haigha-UI/Workflow/ui-theme-color.json b/Haigha-UI/Workflow/ui-theme-color.json new file mode 100644 index 0000000..75407f5 --- /dev/null +++ b/Haigha-UI/Workflow/ui-theme-color.json @@ -0,0 +1,13 @@ +{ + "type": { + "bronze" : { + "color": "0xFF8000" + }, + "steel": { + "color": "0x808080" + }, + "primitive": { + "color": "0xCCA880" + } + } +} \ No newline at end of file From ca5592be86fde82afa7b19c3f208427940d77ff7 Mon Sep 17 00:00:00 2001 From: Magic_Sweepy Date: Fri, 9 Jan 2026 20:16:18 +0800 Subject: [PATCH 4/9] Some primitive associated overlay textures. --- .../textures/gui/overlay/dust_overlay.png | Bin 0 -> 184 bytes .../textures/gui/overlay/dust_overlay_bronze.png | Bin 0 -> 182 bytes .../textures/gui/overlay/dust_overlay_steel.png | Bin 0 -> 184 bytes .../textures/gui/overlay/furnace_overlay_1.png | Bin 0 -> 191 bytes .../textures/gui/overlay/furnace_overlay_2.png | Bin 0 -> 189 bytes .../gui/overlay/furnace_overlay_bronze.png | Bin 0 -> 191 bytes .../gui/overlay/furnace_overlay_steel.png | Bin 0 -> 189 bytes .../textures/gui/overlay/ingot_overlay.png | Bin 0 -> 204 bytes .../gui/primitive/overlay_primitive_dust.png | Bin 0 -> 185 bytes .../gui/primitive/overlay_primitive_furnace.png | Bin 0 -> 197 bytes .../gui/primitive/overlay_primitive_ingot.png | Bin 0 -> 221 bytes 11 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/dust_overlay.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/dust_overlay_bronze.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/dust_overlay_steel.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/furnace_overlay_1.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/furnace_overlay_2.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/furnace_overlay_bronze.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/furnace_overlay_steel.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/ingot_overlay.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/overlay_primitive_dust.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/overlay_primitive_furnace.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/overlay_primitive_ingot.png diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/dust_overlay.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/dust_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bfe41807e6813a7294e737fe98eede1e7ae6210f GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?3oVGw3ym^DWND46Bx z;uvDl`*zYn-U9|4%$NO+vGBa+yrJ_~?F!$-Tj8N~g3k;lT>Doc!(i1A_p*=6Xy4t~ zSE)`r12$}KnsGC%S-Lh|{>;rM9*&!|mn~iV^iW5HlWK;}owL3QWr9x?vR`VhZr$9r ezV-zFan_dgMo&)c`l$-EmBG{1&t;ucLK6V50Ya?+ literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/dust_overlay_bronze.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/dust_overlay_bronze.png new file mode 100644 index 0000000000000000000000000000000000000000..3871fdc5ad89b520a237a823d1598d399516eccd GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?4jLm0XJ$n)Ra)##7%(6i?Lbf4bx9<0%K8a>cY63K|`8Y_#Au@KIN@ z*|3x6sOt_M$8u4#tr2_M)_pv{{HN`a2}h*z#v%>2#BRYDJ%{jaQ!P$b3p4JO(-hhb a85mNwDgWr1R~rhnlfl!~&t;ucLK6T5%sDRr literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/dust_overlay_steel.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/dust_overlay_steel.png new file mode 100644 index 0000000000000000000000000000000000000000..86aeaef2fb5a1796eb5dea16fb320c2546ca6ab5 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?4jLmK?qwgB(Z0K} zuTq_M25i{eG~;Givvh5`{F$3iJRCP^FI&3!>7kAYC)Es{J7;|r$^@S(WWUs0-MYDL eeeDVUHcV`HmC*K%HZkh=d#Wzp$P!MYeZWB literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/furnace_overlay_1.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/furnace_overlay_1.png new file mode 100644 index 0000000000000000000000000000000000000000..117f751dbd9bf3805078869b3ffebd542a926d7a GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?4j!ywFfJby(BP_WR` z#WBR9_wB@kyax<8m?!fc$l!T>F`~h4l}BclM&CtThA-IN}d1+RYcM+vPZ4OR+1_ kOzC!y9$T|qU~y<*Ug3E4cwbqvSwmFz jUEO=?uPeW;|69e-mSkahko`7L4FiLxtDnm{r-UW|(Naed literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/ingot_overlay.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/overlay/ingot_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..211501fe74c492eb1ac90fcf7280953877346ac3 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?4jgCNYfV`BDOpkSS+ zi(`mI@7qZSc@HS?F!vrw@R^Wk+i1R6f0f80hx=>eC%o_zWBS3&pkjSe?(Hc~n{#VT z85&e(+-&A`6|_m8cDG&FVzQ{drJzStT3Xnud_~PEl@<5;W4}7)eT#}Fx#g1En}Q>p;XJ7i4m3}%^Qw#=!q{_eN<{{3zN+3))4Or chb0&o`YZG+PQ04I3bdBN)78&qol`;+02zThn*aa+ literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/overlay_primitive_furnace.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/primitive/overlay_primitive_furnace.png new file mode 100644 index 0000000000000000000000000000000000000000..5ec3d0205676ed1aaff1804eaac8925632bdc3b1 GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVjz7Kgc)Ve?pgt4lzX~3 zhFJ6_CrDT>Sa0&l-p)?XP%Vh}a2iKgbJwov#*fPM^Gqe!9&VaAVfBWp-Vkx2Q~^El zN2VPSzBjHUl?tA*zQJ?sX(&&#&lZsY9)pWP2|(;%c*n(?alhjaCb7GvFR}u8tW5TQ nvOgnw!oYa~r$K4mdKI;Vst0OSQ$Z~y=R literal 0 HcmV?d00001 From cff95b3f6edc9664257eac7d5b2faea76480985f Mon Sep 17 00:00:00 2001 From: Magic_Sweepy Date: Sat, 10 Jan 2026 12:35:29 +0800 Subject: [PATCH 5/9] Standard button and its toggle variant textures. --- .../gregtech/textures/gui/widget/button.png | Bin 0 -> 134 bytes .../textures/gui/widget/button_clear_grid.png | Bin 0 -> 203 bytes .../textures/gui/widget/button_no_flex.png | Bin 0 -> 168 bytes .../textures/gui/widget/button_x_overlay.png | Bin 0 -> 168 bytes .../gregtech/textures/gui/widget/buttons.png | Bin 0 -> 329 bytes .../gui/widget/toggle_button_background.png | Bin 0 -> 186 bytes Haigha-UI/Workflow/button-theme-color.json | 20 ++++++++++++++++++ 7 files changed, 20 insertions(+) create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_clear_grid.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_no_flex.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_x_overlay.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/buttons.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/toggle_button_background.png create mode 100644 Haigha-UI/Workflow/button-theme-color.json diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button.png new file mode 100644 index 0000000000000000000000000000000000000000..29f891a7e79e14647ee775e64ab98b1f58c05fb5 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1SD^+kpz+qoCO|{#S9F52SJ!|$HeTnKtT&n z7sn8diOFkLtx8gm-C$r~5E2qHVaf8vi<>)nR!c}oxNYstlFqpm0c4(=YwhlSyX@^P b*HvZ=370qxOijMKgG}~x^>bP0l+XkKtePiW literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_clear_grid.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_clear_grid.png new file mode 100644 index 0000000000000000000000000000000000000000..5082db54beb9b3f05387b7dc30feccc545174c4a GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1SD^+kpz+qoCO|{#S9F5hd`K7RKu$QC|K+1 z;uxYaaqh)~yayCGSTDpMt~r-H=Rl=}Rg3Z0H0d7`qVhQOwPN;`&uM4KSSvfz(CudD zs#RH6vQ{0PzS2;gfA!W&%jUjgtDZgm$^`d)sVN+veeV@~Q|0J(o3!zJ{i2&u&(Z}> yPMYD;#(jccl|3+&Va-+{hsV$Fu^gE5dCJ|1xz2GBD;3>9&hvEjb6Mw<&;$UVT}#sd literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_no_flex.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_no_flex.png new file mode 100644 index 0000000000000000000000000000000000000000..334e3df7a23976d22cefa265f9b84f07beec5e20 GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?3oVGw3ym^DWNC>Z7G z;uvDl`*xxsAA?g4mUrhriDycF>lJnyO*=_ z88$MqE?iKzA(Um}0*+$}X)14I@7ligxZ!@!{`M-H#2c@ySAAa^%GlfJzI)pq9VehI N44$rjF6*2UngAoDIN$&P literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_x_overlay.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_x_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a7204d3a6c9741065a07c6e8e243ef0c634529ba GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?4j10c+pb*+;VC>Z7G z;uvDl`*xxsAA?g4mUrhriDycF>lJnyO*=_ z88$MqE?iKzA(Um}0*+$}X)14I@7ligxZ!@!{`M-H#2c@ySAAa^%GlfJzI)pq9VehI N44$rjF6*2Ung9rBI>Z0~ literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/buttons.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/buttons.png new file mode 100644 index 0000000000000000000000000000000000000000..99032a2a36e4dd1c3a295216da234c2e35e7a075 GIT binary patch literal 329 zcmeAS@N?(olHy`uVBq!ia0vp^WZ)lR^9S57z2hPmT!AN&G)p-|Dhlp5-JG6e+cVd!JMH zf(1|Sirw6Bxh1``I8M?z&EWB9L*k}ImB$KatkB^4 zmAH6|IQQkY*383)wj?Ir+F+0yF~dy8A#$41rcGiO1Fk<@l(&DQ&3V_9O4UURR~>TA zE4Se8Vfx(I;l{(hA>wVb%I&8-8P~#%5rVClC{ z5F>Sbq{Wu;a$j~!KfKTT!+)dKr$IP<=GUW)G2f&oCf@pzeSq=K`r`?LTV8Yj;#GfU Wb#}%P#Y$i>FnGH9xvXEak-(VM(x)v6=~*$oB;1|cCK6P7GrytuiOXSIZcgxl8MEa{wE5kTg-xz_IPx69t% za$RNS=E|&Yl-r$k&t=lQ)U9 Date: Sat, 10 Jan 2026 12:42:00 +0800 Subject: [PATCH 6/9] Make button icon more stereoscopic. --- .../textures/gui/widget/button_clear_grid.png | Bin 203 -> 216 bytes .../textures/gui/widget/button_no_flex.png | Bin 168 -> 211 bytes .../textures/gui/widget/button_overclock.png | Bin 0 -> 134 bytes .../textures/gui/widget/button_power.png | Bin 0 -> 299 bytes .../textures/gui/widget/button_x_overlay.png | Bin 168 -> 211 bytes 5 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_overclock.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_power.png diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_clear_grid.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_clear_grid.png index 5082db54beb9b3f05387b7dc30feccc545174c4a..2d4b64816c6db0096362e004478e22b0d191fa1e 100644 GIT binary patch delta 167 zcmV;Y09gOa0oVbMIe&^tL_t(2k)6^(4nrXb1kkDR(8LpX9+n=$rRV9Q3FYHpYS|fh ziH^KlYq+lpKt!%g@4eVTRaG?`4c#wWYkk_(*g#|=LZuo1mf|ONNlj!yW`;0q!P1-w z`=to8yB)HP%)ckgHnKf~OqPQ=$j6q@tWEkYslK;^tXl!hIUo;!)}Q}Y0gN$j*&BF~ Veq!;-nHm59002ovPDHLkV1loMO^^Tp delta 154 zcmV;L0A>H!0m}i9Ie&dgL_t(2k)6@O4Zt7>1<+r^e9mK>z#EYSe0~#h0luCl9N&(x#p6278;A)R0HMWn>8RP2O diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_no_flex.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_no_flex.png index 334e3df7a23976d22cefa265f9b84f07beec5e20..2f0663abf2bbf1fda1ff17b53db82cc01e059df1 100644 GIT binary patch delta 162 zcmV;T0A2s60n-7HIe&#oL_t(IjqQ`c5r7~J1fyd$)I=pIfJ#ym?cgg;2;@*-KD-}u zHw)x|=+hFBCL--kZnukC>lH*0n^kQ-$jmLJL_|b6=gzl~QcC9ypa_N_A;`m25d?zl zDOCQdR(oVTRk(w1Cn^AfW`jj-PC=+01iSrCR)nR!c}oxNYstlFqpm0c4(=YwhlSyX@^P b*HvZ=370qxOijMKgG}~x^>bP0l+XkKtePiW literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_power.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_power.png new file mode 100644 index 0000000000000000000000000000000000000000..3a58931f527e6056019b3ca02aa66868e025e32c GIT binary patch literal 299 zcmV+`0o4A9P)K)G-RfFboAyxfkis&Cs04(50s^v_k?uMV5e1)PlDT zJ&8IAVq3C3By9-Q6y(o~u)qM{D(^jd@3EFUEcHVclBOt4mq8Q^A!K3daaaV+5$Bwu zZvvcis)RL-Udyd}+1r6yE>ha6N`ux~)LH`ofH5XI=e8i)Rl x>3jqLfQ!0D=iF9BD8vPD?>jP?UysgUajo|lH*0n^kQ-$jmLJL_|b6=gzl~QcC9ypa_N_A;`m25d?zl zDOCQdR(oVTRk(w1Cn^AfW`jj-PC=+01iSrCR Date: Sat, 10 Jan 2026 13:12:05 +0800 Subject: [PATCH 7/9] Multiblock IO and void mode button textures. --- .../gui/widget/button_allow_import_export.png | Bin 0 -> 350 bytes .../textures/gui/widget/button_blacklist.png | Bin 0 -> 342 bytes .../gregtech/textures/gui/widget/button_cross.png | Bin 0 -> 204 bytes .../gui/widget/button_fluid_output_overlay.png | Bin 0 -> 233 bytes .../textures/gui/widget/button_fluid_void.png | Bin 0 -> 224 bytes .../gui/widget/button_item_output_overlay.png | Bin 0 -> 231 bytes .../textures/gui/widget/button_item_void.png | Bin 0 -> 224 bytes .../gui/widget/button_void_multiblock.png | Bin 0 -> 572 bytes Haigha-UI/Workflow/inventory-theme-color.json | 14 ++++++++++++++ Haigha-UI/Workflow/status-theme-color.json | 10 ++++++++++ 10 files changed, 24 insertions(+) create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_allow_import_export.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_blacklist.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_cross.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_fluid_output_overlay.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_fluid_void.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_item_output_overlay.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_item_void.png create mode 100644 Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_void_multiblock.png create mode 100644 Haigha-UI/Workflow/inventory-theme-color.json create mode 100644 Haigha-UI/Workflow/status-theme-color.json diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_allow_import_export.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_allow_import_export.png new file mode 100644 index 0000000000000000000000000000000000000000..059dc91db64d9e6f4b1ef9f28066e6e50c58203f GIT binary patch literal 350 zcmV-k0iphhP)K)xiyeFboCI-->ev$uLa7AQ1zg43Y_QWC)HKBnz~M z78<~@At2F8^$jpjA$Blua@+u*ZQI8gSl4y8YP>MU9Kx)%0D$}QfmaG%DG|u!t-z4H zz+q`F3z`^NG{sDeGRUD4mIWy^#k6zq-jnZD%NuE;b`EHo*>mmOEVr&}9t>f=)jIbH z?_3c~`*B%K4ZK$D96|_W@2)@!8w+5Sn$TTE$yHNoDH4=gLqf@u!u45-QYU3y6b9Oo zH-W=2Y=Wf7o|Mv(7+gJyUY4 w8Zj!jXb*E(5y)XhptL2|pA;$nGv#KmBEd}Fbo7YL3&Xqs)J<+F2GP3u7gGR&uT6&297M5 zYdCq_;pS(68ZSv30zS+Q0H$gB`Gjnq=i9>{N-39QwN?PYoh|kQ5uvcwikvfY&Xn{} z=rV_qQZ1`0RFx?m3q9Rdq^e=cuCQ&jl~8Gp%KM>#O(i z$$|w<1=qIxNMO5F)?5DEc!|Y&W>*7NPDi=4E(M_@yA6IW-V~H#6S|`*UtPwpRrcX|tyBl$ICdW-Vwf{3G2tDFax@N$${^2DFAUE-@hF~Bh-p(;p2fzd6L)y3-vr0v9dg&!m~wq! aW@z50ul@DM_A5YVGI+ZBxvXwpRrcX|tyBl%Tkf*89;OBXbKcW1UAEOSmoSy(>JY-uS?K8#kg`UC_sXc5H zxeBCO-iSKgJCrFjN`Gjg0Q0d=B?G Qpz9bsUHx3vIVCg!0A@5(6951J literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_item_output_overlay.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_item_output_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..af5cf233235c0a6a28fceec62e4c62c0b93f4596 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?4j!ywFfJby(BP;jQF zi(`mIZ*qb}PJ`g=2j6U#{y&oOZB7aQy7{cJpYHGkFXE}Je5=bPe{{jyO0WMHMH84G zMIDkzlF&2ixo{-=#81)d8@r4JH_i12OysTz% z`}}!+y=RMD7Inu=nGpMg-IQhjcaAne!#06b0X^pl!KTd2V(TAzsh>EY@z~_r8dI(h a%na96wH|i-E13&)B!j1`pUXO@geCxAD^_y= literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_item_void.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/widget/button_item_void.png new file mode 100644 index 0000000000000000000000000000000000000000..7369a828122436b93dfd3e21ecb56c7e9ebae593 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?4j!ywFfJby(BP;io` zi(`mIZ*qb}PJ`g=2j6U#{y&oOZB7aQy7{cJpYHGkFXE}Je5=bPe{{jyO0WMHMH84G zMIDkzlF&2ixo{-=#81)d8@rMvSeRq1P6z(Dzs}{+)&|b`ia^F8UI+6T8qF7C9Zr~5 z@G6NuFyXkV-Lj|kvci)BM?U=;hV(UpmpbOG+9=hcJy(HwanI$5&DS&z@H3Pa>pALe S_-g`m9fPN4nJa0`PlBg3pY5)2HC z?>t=`Ln2z=PTT0k>?qLYzfowN0C#TBgmcOqTy{-ezNa!2_!C5fB4i^tR|a*2O6_i# z`Oo z;n;i3EnCBA`{~Whw-nF6k8_#u@%M5e?FDYx60d~~c1piKHe+Jo%Yyl>EzRsDb851u zp4})^?ymQn`O8=J3GYt$67rPGRn99%KbF0lP^?(UZ>h1Rw{nehlI@efr?xJhuKs#L z1V~KwxqGZik;mTlKLw%3&%Bx7X&qdc(tqui^S_&liS;JZe4M|Jt&|n|Hle=k1k1JJ q>KEm!onP6eL>RnQD?jn_3wQLnLzUr9BAbB8fx*+&&t;ucLK6Vju>WlU literal 0 HcmV?d00001 diff --git a/Haigha-UI/Workflow/inventory-theme-color.json b/Haigha-UI/Workflow/inventory-theme-color.json new file mode 100644 index 0000000..049321a --- /dev/null +++ b/Haigha-UI/Workflow/inventory-theme-color.json @@ -0,0 +1,14 @@ +{ + "inventory_type": { + "item": { + "box": "0xB76E22", + "box_secondary": "0xCE9835", + "board": "0xE8C64B" + }, + "fluid": { + "box": "0x708CBA", + "box_secondary": "0x7DA9D2", + "board": "0x9CD3FF" + } + } +} \ No newline at end of file diff --git a/Haigha-UI/Workflow/status-theme-color.json b/Haigha-UI/Workflow/status-theme-color.json new file mode 100644 index 0000000..aac83ba --- /dev/null +++ b/Haigha-UI/Workflow/status-theme-color.json @@ -0,0 +1,10 @@ +{ + "status": { + "working": [ + "0xA1FF9C", "0x7ED27D" + ], + "stop": [ + "0xA40000", "0x7A0000" + ] + } +} \ No newline at end of file From 6c0543802056ad04f795110d6c0ee4afc7330d67 Mon Sep 17 00:00:00 2001 From: Magic_Sweepy Date: Sat, 10 Jan 2026 13:41:28 +0800 Subject: [PATCH 8/9] MUI2 compat textures. --- .../textures/gui/background/background.png | Bin 0 -> 531 bytes .../modularui/textures/gui/background/display.png | Bin 0 -> 305 bytes .../textures/gui/background/display_small.png | Bin 0 -> 133 bytes .../gui/background/vanilla_background.png | Bin 0 -> 487 bytes .../assets/modularui/textures/gui/slot/fluid.png | Bin 0 -> 134 bytes .../modularui/textures/gui/slot/fluid_tank.png | Bin 0 -> 138 bytes .../assets/modularui/textures/gui/slot/item.png | Bin 0 -> 129 bytes .../modularui/textures/gui/tab/tabs_bottom.png | Bin 0 -> 382 bytes .../modularui/textures/gui/tab/tabs_left.png | Bin 0 -> 422 bytes .../modularui/textures/gui/tab/tabs_right.png | Bin 0 -> 432 bytes .../modularui/textures/gui/tab/tabs_top.png | Bin 0 -> 360 bytes .../textures/gui/widgets/base_button.png | Bin 0 -> 134 bytes .../modularui/textures/gui/widgets/mc_button.png | Bin 0 -> 252 bytes .../textures/gui/widgets/progress_bar_arrow.png | Bin 0 -> 254 bytes 14 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/background.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/display.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/display_small.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/vanilla_background.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/slot/fluid.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/slot/fluid_tank.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/slot/item.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_bottom.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_left.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_right.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_top.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/widgets/base_button.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/widgets/mc_button.png create mode 100644 Haigha-UI/ResourcePack/assets/modularui/textures/gui/widgets/progress_bar_arrow.png diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/background.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/background.png new file mode 100644 index 0000000000000000000000000000000000000000..770527148d58080c08535f0dd240e982142f4c06 GIT binary patch literal 531 zcmeAS@N?(olHy`uVBq!ia0vp^8-REj2NRI|8a1gONO2Z;L>4nJ@ErnSMo|r~1_lPk zqn<8~Ar*7pUNxL}*g(Yf;(qI82?mOSHuDrXcZl1Oqe*~8k;6%# zMS;UnphroN&~(QfbP0l+XkKsY{6m literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/display.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/display.png new file mode 100644 index 0000000000000000000000000000000000000000..da9c35ecd40d8db2e218afcffb7d412dfad7bb7d GIT binary patch literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^{Xp!^!2~3aRXC>sDb50q$YKTtzQZ8Qcszea3Q+K| zr;B4q#hkZy4{{!M5MVhtHIU2ebyH|YmxJPsI$7ROK^~Le_a0ZyQ+zaM=I?#w=O66e zdM*7s+rNTyXG&vtr+*OM9=a&3GfFjU>WV?gIQejT#R=|Scg~jZ1>Zjaz02U~>gTe~ HDWM4fDbjr< literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/display_small.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/display_small.png new file mode 100644 index 0000000000000000000000000000000000000000..c8c169be845edf5f58009a7d2f1a98e89933c80c GIT binary patch literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|&H|6fVg?4j!ywFfJby(BP|)1d z#WBR9H~G((mzV3=v>3$L*x1^9XPX74bj+VGe?%cLFt983h|5OK#caJ&CRrCQm~>2x bVwGlSir^NwdW>TZ&|*gAGVVJ&0!oQk(@Ik;M!Qd_W1l!;HuCSEMj7 zFwXRJaSW-L^Y)ryA+w`^>%on$H8^@aIL=QM;OKX16i~JPuvxRG`CZ20`Fm#l-EseY zJo6btU%%)Z7tE$!a>@4x_kKAXidEiG>Sbs+mYucatI_u3cdcLHOM N!PC{xWt~$(69CdOhLr#S literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/slot/fluid.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/slot/fluid.png new file mode 100644 index 0000000000000000000000000000000000000000..aaed5e743029b2c798cc2432b90c7134eea7ca69 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1SD^+kpz+qoCO|{#S9F5M?jcysy3fAP|(8D z#W6%<;@h)^ybK0BM;x}Fl3{U_TF|fH(Dm@T);)i_yS?!Yp{X-xaw-_#yK1 c29=#}7z6y-T{Nbtb%9LwboFyt=akR{03}!@tN;K2 literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/slot/fluid_tank.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/slot/fluid_tank.png new file mode 100644 index 0000000000000000000000000000000000000000..b871aee414abc020b57c52f12023632db9ab50e7 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^d_c_4!2~3u%QBUL6lZ})WHC_uFbFdq&tH)O6twYl zaSYLzn4FWKAhyB4z#!t?9nXNfh2`a99IOu?Uw2-!l81-KMgTe~DWM4fBanMprEm* zi(`n!#Nz=<}QCGyo$+=x~sm@`8lv&H(tbG4__Uowc@5*9t&UkM5*(Q8%dB%nR3v7#W zWR9zNUN61+?q|y(9xh{zGYbrwNnmXFy5R6PoeTG}?q*MxsrtA4n{9k$M6g%nzh7!9 zo?erlmF&|wzy7-Ov3v3JCaIXdUn~FZe*FC1eRu6`?!{c+^}L*P`^-Om+x{AC-;>9` q%1+!^KkIwV)5NncYd+R!ykM`*@buz~JJ<;fPzFy|KbLh*2~7ZrHK%(3 literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_left.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_left.png new file mode 100644 index 0000000000000000000000000000000000000000..a39a0f32a8cc7cefc7fd7032230c418e993576a7 GIT binary patch literal 422 zcmeAS@N?(olHy`uVBq!ia0vp^4nQ2j!3HFa^bCW66lZ})WHAE+-(e7DJf6QIg@J)F z!qdeuq+-t7Ifj0R9RwK6HR2t%TnJY1p7>~*k-dU`VgC{SA0AeJ7`+vCE?VMoTH8rD zy8ZHdmt8YY?MriC?EQG^rY>WC|MSZkDsJX>ZZv-VDfNGqhqwiA{>9SRUw1mcetPiz z$6T{N@BS6m$+aow=AGm<`r2i{pzDy#5Y=#uVGBbqV+NxX^93dowgs#iJPzC!BpSpP z7(x|1d$hXX=TfuD+j4`S`^GQ)&-%k=&vGvpmz+H1V}(9*Z>@J?JJ*rhsNCpp91kIqOCc0H=*)H-Ug>TyvzLd0ZBdnJG^0S_#B4f@^@^f4@;Fd ni<>VHTPD4I7GKt1@3Zz{zkQhWTMBJ}0ngy+>gTe~DWM4fHU^@} literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_right.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_right.png new file mode 100644 index 0000000000000000000000000000000000000000..cfc52cbc52fdb9f0dfb3a760f1e5169dfdd18366 GIT binary patch literal 432 zcmeAS@N?(olHy`uVBq!ia0vp^4nQ2j!3HFa^bCW66lZ})WHAE+w=f7ZGR&GI!N9ldNx4G3Zb5u3+#NVhS^R&lKnQJDy|NhF%R8Zg0ov+c6H@ zC!fD$EMuCva?@45&!1=K81o!1Z@6>UUa{IfPJVVrM_Qzqj)SJ^tUQnV)zzhiJQw^f zPtg+)yjXhouuA$42R37|+FK#LhCRR8`p9jCUA4>=(lPRTc;AWO xau|jQdw8!MmdkI}{dqdSaodz8t_#}_%9lLwlh5|wD+-JP22WQ%mvv4FO#pjLn&|)l literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_top.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/tab/tabs_top.png new file mode 100644 index 0000000000000000000000000000000000000000..62e6333d4f9555c13794841bed8d924a4e4364a6 GIT binary patch literal 360 zcmeAS@N?(olHy`uVBq!ia0vp^AwcZF!3HE-bOL;U6lZ})WHAE+w=f7ZGR&GI!N9;M z<>}%WQZeW4t&N|@wXYb9k=a#-( zJ89h?#pXjiT*ew_78sDoShm_?et3A0cIo<8yUyJ%Utp!QDEGEba_xQhm(`cm?RlIp zZCsX__B`nOAI*d0*}%iKdcXallcmQqR_^WSaSXn%8&#G6M4i8yncde=+s?>J9T;>B Mp00i_>zopr06pZ6(EtDd literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/widgets/base_button.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/widgets/base_button.png new file mode 100644 index 0000000000000000000000000000000000000000..29f891a7e79e14647ee775e64ab98b1f58c05fb5 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1SD^+kpz+qoCO|{#S9F52SJ!|$HeTnKtT&n z7sn8diOFkLtx8gm-C$r~5E2qHVaf8vi<>)nR!c}oxNYstlFqpm0c4(=YwhlSyX@^P b*HvZ=370qxOijMKgG}~x^>bP0l+XkKtePiW literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/widgets/mc_button.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/widgets/mc_button.png new file mode 100644 index 0000000000000000000000000000000000000000..43dd0ca2d0b01bd194dd82672787bb9e9f2c790b GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3HF&`%2dVDb50q$YKTtZeb8+WSBKa0w}o7 z)5S3)qw(#Hjl72p1X>@8AK}Y%_CLtObAZ7oDRPn5W7dd9#-J(|u5ccQ(;`c}RGjA8 zi2n~QE1f?t=FZMe!@ATpb2sl)dAr=1Bk}SvO;t}(6`-kb&`_zbu{46=8wmdKI;Vst04JzYk^lez literal 0 HcmV?d00001 diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/widgets/progress_bar_arrow.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/widgets/progress_bar_arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..940d95eed46d3a9d0ee750ca515e4d15061c3383 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^B0#Lc!3HG%8Q!`Lq&N#aB8wRq_>O=u<5X=vX`tW+ zPZ!4!kIuJO9l4Gu@UUJ;d2wrTWs}T#;U^h89nw{&ED)Q#KcoHUh0u?I7yk+Tjfu*B z{^~D#Z`%P;DYo Date: Sat, 10 Jan 2026 13:53:12 +0800 Subject: [PATCH 9/9] Make display color darker to suit with GTCEu font color. --- .../gregtech/textures/gui/base/display.png | Bin 305 -> 309 bytes .../textures/gui/base/display_bronze.png | Bin 312 -> 310 bytes .../textures/gui/base/display_steel.png | Bin 309 -> 309 bytes .../textures/gui/background/display.png | Bin 305 -> 309 bytes .../textures/gui/background/display_small.png | Bin 133 -> 139 bytes 5 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display.png index 8cb13fe82b5b0bcfc9c42afec9f07a841d86957a..f40352a4d1f216202d54b6a48d9ebac0991fd17e 100644 GIT binary patch literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^{Xp!^!2~3aRXC>sDb50q$YKTtzC$3)D5~Mr02F-g z>EaktG3V{&jl9hPA}j~fyL-e=tehD1vQ4OG@%pK0S{9k5^Iz|3>&Q)e_dCwE`Tn`j zf7abQAir(q&F{5edE!2<724``MJsT%%V1<|n`zmX40L5BgZCoV8b7utCxBjN@O1Ta JS?83{1OTSNeenPQ literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^{Xp!^!2~3aRXC>sDb50q$YKTtzC$3)D5~Mr02F-e z>EaktG3V{wgPeyQ1XvDE4dn8A-4vS9<)C<@PL?-RkjLcry~maF6d%o*`Fmga`3JkV zUQ7SZ_OIaFnbO$Z=^uo*hb{{1j8e^-x?&JAPClGoae}+oowFr;!S@e9?=pD0`njxg HN@xNA?wEV% diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_bronze.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_bronze.png index 598744867c1ef9f3d4be0dc41fb76b1da5c38778..b7c98e815d7428dc89be9592cc0bf2068a9ead9a 100644 GIT binary patch delta 124 zcmdnNw2f(krOOLX7srr_Id3m-*qHY0^WD8o%=5lmzQ1=s{@R%s{oUaOJ^7Ov8KovMN+TgL*-dHB3UBXiO0FwO VX72sd?jFVf1fH&bF6*2UngBfcHrW6G delta 113 zcmV-%0FM8*0=NQ@IYsJ8L_t(|obA&w4MIT_1~Z6-NK z!A&Oj^nDE#Yi8b`-77fYd7ty{4g6uv%=NN+1;_Z2ftZsJ0R&u{h)o21 T=H<)100000NkvXXu0mjf2JJDB diff --git a/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_steel.png b/Haigha-UI/ResourcePack/assets/gregtech/textures/gui/base/display_steel.png index f40352a4d1f216202d54b6a48d9ebac0991fd17e..5074aee58254c7779b59088c719b6861bf03e206 100644 GIT binary patch delta 101 zcmV-r0Gj``0<{8=LOH<+gisU&!MBTe^kh2bpNv5m!n&tVLsbL=&3vxw8X~rtx$k@R z41PP$^SgQjf7oVb-}lusc*VDop>~mwCLY;l<~WYkGkE0zwo(L-8iln$00000NkvXX Hu0mjfh*&Og delta 100 zcmV-q0Gt1{0<{8=LO8JvgHRL%!Dow%7RafQQt5^gjH9oWW-2&ob)W0HhKOxu?)zRn zgWt~c{I1@>AGVp<_kHyYUh$EEmXVML9=4e|j$`!jZq6K_T2IR;90000sDb50q$YKTtzC$3)D5~Mr02F-g z>EaktG3V{&jl9hPA}j~fyL-e=tehD1vQ4OG@%pK0S{9k5^Iz|3>&Q)e_dCwE`Tn`j zf7abQAir(q&F{5edE!2<724``MJsT%%V1<|n`zmX40L5BgZCoV8b7utCxBjN@O1Ta JS?83{1OTSNeenPQ literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^{Xp!^!2~3aRXC>sDb50q$YKTtzQZ8Qcszea3Q+K| zr;B4q#hkZy4{{!M5MVhtHIU2ebyH|YmxJPsI$7ROK^~Le_a0ZyQ+zaM=I?#w=O66e zdM*7s+rNTyXG&vtr+*OM9=a&3GfFjU>WV?gIQejT#R=|Scg~jZ1>Zjaz02U~>gTe~ HDWM4fDbjr< diff --git a/Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/display_small.png b/Haigha-UI/ResourcePack/assets/modularui/textures/gui/background/display_small.png index c8c169be845edf5f58009a7d2f1a98e89933c80c..eafa1d998a0aaf958fc9156e9a42c606ba6f2ee5 100644 GIT binary patch delta 89 zcmZo=>}H%`8D#6};uvDlo4jVtnm^|qSPvXJaNt0}=V!iMJb~fi?Gi`Mp7q_>JwwAR s@yde0W;b4`S!^2(fZ)W569G8_47c6cI2|n??PmZ2Pgg&ebxsLQ0OZ^xy8r+H delta 83 zcmeBXY-OBa>0|Ec;uvDloBZd?%ggm_S`1=rY;0}5v&{liI_A%pKcWyA7}yni#APGr nVzyo>ldKCDOgbh;u}U*EMQ{sTJ;pJI0SG)@{an^LB{Ts5_$M7@