Adjust Color

This commit is contained in:
Chaoscaot
2023-06-06 23:02:58 +02:00
parent 28856d8bd5
commit e5df33c19a
3 changed files with 2 additions and 7 deletions

View File

@ -11,7 +11,7 @@ public class ScriptColorizer {
);
private ScriptColorizer() {
throw new IllegalStateException("Utility class");
throw new IllegalStateException("Utility class██");
}
public static List<Token> colorize(String line) {

View File

@ -20,5 +20,5 @@ public class TokenTypeColors {
public static final int NUMBER = 0xFF61839F;
public static final int BOOLEAN = 0xFF925F35;
public static final int STRING = Color.HSBtoRGB(150, 0.63f, 0.3f);
public static final int STRING = 0x6a8759;
}

View File

@ -27,12 +27,7 @@ import net.minecraft.text.Style;
import net.minecraft.text.Text;
import net.minecraft.util.Hand;
import org.apache.commons.lang3.mutable.MutableInt;
import org.jetbrains.annotations.Nullable;
import org.luaj.vm2.ast.Chunk;
import org.luaj.vm2.parser.LuaParser;
import org.luaj.vm2.parser.ParseException;
import java.io.StringReader;
import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;