feat: improve texture & design

This commit is contained in:
Martin Prokoph
2025-06-28 21:51:45 +02:00
parent a906bc5381
commit 4c0f8d1c02
5 changed files with 32 additions and 10 deletions

View File

@@ -0,0 +1,19 @@
package eu.midnightdust.yaytris.util;
import java.awt.*;
/*
Colors based on the [Catppuccin Mocha](https://github.com/catppuccin/catppuccin) color palette
*/
public enum CatppuccinColor {
CRUST(0x11111b), MANTLE(0x181825), BASE(0x1e1e2e), SURFACE0(0x313244);
final Color color;
CatppuccinColor(int rgb) {
this.color = new Color(rgb);
}
public Color getColor() {
return color;
}
}