You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-8Lines changed: 21 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@
4
4
5
5
This library simplifies color management while allowing developers to build beautifully formatted text with ease!
6
6
7
+

8
+
7
9
## ✨ Features
8
10
9
11
- 🎨 **Hex and Legacy Color Code Support**
@@ -18,6 +20,9 @@ This library simplifies color management while allowing developers to build beau
18
20
19
21
## 🚀 Getting Started
20
22
23
+
> [!IMPORTANT]
24
+
> While MatrixColorAPI is designed to work with all Minecraft server software, it has currently been extensively tested only on Bukkit platforms. We encourage users on other platforms to try it out and report any issues they encounter. Your feedback is crucial in making MatrixColorAPI universally compatible!
@@ -53,7 +58,7 @@ MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to int
53
58
<dependency>
54
59
<groupId>com.github.MatrixCreations</groupId>
55
60
<artifactId>MatrixColorAPI</artifactId>
56
-
<version>v1.0.5</version>
61
+
<version>v1.0.6</version>
57
62
</dependency>
58
63
```
59
64
@@ -66,30 +71,38 @@ MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to int
66
71
67
72
-**Solid Color Example:**
68
73
74
+

75
+
69
76
```java
70
77
String text ="<SOLID:#FFD700>This is yellow text";
71
-
String processed =ColorUtils.process(text);
78
+
String processed =MatrixColorAPI.process(text);
72
79
```
73
80
74
81
-**Gradient Example:**
75
82
83
+

84
+
76
85
```java
77
86
String gradientText ="<GRADIENT:#FF0000>This is a red to yellow gradient</GRADIENT:#FFFF00>";

93
+
83
94
```java
84
95
String legacyText ="&aThis is a green text with &lBOLD";

102
+
90
103
```java
91
104
String hexText ="&#FFD700This is a yellow text with &lBOLD";
0 commit comments