Jump to content

How can I change Forge's loading screen color?


omnihil

Recommended Posts

I would like to change this: "RED(new ColourScheme.Colour(239, 50, 61)"

https://maven.minecraftforge.net/net/minecraftforge/fmlearlydisplay/1.20.1-47.1.0/fmlearlydisplay-1.20.1-47.1.0.jar

...\fmlearlydisplay-1.20.1-47.1.0.jar\net\minecraftforge\fml\earlydisplay\ColourScheme.class

 

// 
// Decompiled by Procyon v0.5.36
// 

package net.minecraftforge.fml.earlydisplay;

public enum ColourScheme
{
    RED(new ColourScheme.Colour(239, 50, 61), new ColourScheme.Colour(255, 255, 255)), 
    BLACK(new ColourScheme.Colour(0, 0, 0), new ColourScheme.Colour(255, 255, 255));
    
    private final ColourScheme.Colour background;
    private final ColourScheme.Colour foreground;
    
    private ColourScheme(final ColourScheme.Colour background, final ColourScheme.Colour foreground) {
        this.background = background;
        this.foreground = foreground;
    }
    
    public ColourScheme.Colour background() {
        return this.background;
    }
    
    public ColourScheme.Colour foreground() {
        return this.foreground;
    }
    
    private static /* synthetic */ ColourScheme[] $values() {
        return new ColourScheme[] { ColourScheme.RED, ColourScheme.BLACK };
    }
    
    static {
        $VALUES = $values();
    }
}

Edited by omnihil
forgot to specify which loading screen
Link to comment
Share on other sites

  • omnihil changed the title to How can I change Forge's loading screen color?

You don't. Its meant to keep with Mojang's branding colors. If you want a different color use the dark theme option in vanilla, it'll switch to black.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

You can't change the vanilla loading screen with a resource pack {unless something has changed recently}, for the same reason that you can't change this one. They are done before mods are loaded.

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.