@@ -35,7 +35,7 @@ MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to int
35
35
2 . ** Add the dependency** in your ` dependencies ` block:
36
36
``` gradle
37
37
dependencies {
38
- implementation 'com.github.MatrixCreations:MatrixColorAPI:v1.0.5 '
38
+ implementation 'com.github.MatrixCreations:MatrixColorAPI:v1.0.6 '
39
39
}
40
40
```
41
41
@@ -53,7 +53,7 @@ MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to int
53
53
<dependency >
54
54
<groupId >com.github.MatrixCreations</groupId >
55
55
<artifactId >MatrixColorAPI</artifactId >
56
- <version >v1.0.5 </version >
56
+ <version >v1.0.6 </version >
57
57
</dependency >
58
58
```
59
59
@@ -68,28 +68,28 @@ MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to int
68
68
69
69
``` java
70
70
String text = " <SOLID:#FFD700>This is yellow text" ;
71
- String processed = ColorUtils . process(text);
71
+ String processed = MatrixColorAPI . process(text);
72
72
```
73
73
74
74
- ** Gradient Example:**
75
75
76
76
``` java
77
77
String gradientText = " <GRADIENT:#FF0000>This is a red to yellow gradient</GRADIENT:#FFFF00>" ;
78
- String processedGradient = ColorUtils . process(gradientText);
78
+ String processedGradient = MatrixColorAPI . process(gradientText);
79
79
```
80
80
81
81
- ** Legacy Code Support:**
82
82
83
83
``` java
84
84
String legacyText = " &aThis is a green text with &lBOLD" ;
85
- String processedLegacy = ColorUtils . process(legacyText);
85
+ String processedLegacy = MatrixColorAPI . process(legacyText);
86
86
```
87
87
88
88
- ** Hex Code Support:**
89
89
90
90
``` java
91
91
String hexText = " &#FFD700This is a yellow text with &lBOLD" ;
92
- String processedLegacy = ColorUtils . process(hexText);
92
+ String processedLegacy = MatrixColorAPI . process(hexText);
93
93
```
94
94
95
95
## 🛠️ Available Methods
0 commit comments