Skip to content

Commit b484dc3

Browse files
authored
Update README.md
1 parent 2d037f5 commit b484dc3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,27 +66,35 @@ MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to int
6666

6767
- **Solid Color Example:**
6868

69+
![Solid Color Example](https://media.discordapp.net/attachments/1262415791731511347/1291383818502279218/image.png?ex=66ffe667&is=66fe94e7&hm=8cbe3b951c6b0cd7eee1b9edb7718f81b75c46f8e72388746b1fc1ed0da39c1e&=&format=webp&quality=lossless)
70+
6971
```java
7072
String text = "<SOLID:#FFD700>This is yellow text";
7173
String processed = MatrixColorAPI.process(text);
7274
```
7375

7476
- **Gradient Example:**
7577

78+
![Gradient Color Example](https://media.discordapp.net/attachments/1262415791731511347/1291384051160055869/image.png?ex=66ffe69e&is=66fe951e&hm=ba7d6c4748241b8e989249e2cf7818fe41a2768a61a58753fad034bc04ab56db&=&format=webp&quality=lossless)
79+
7680
```java
7781
String gradientText = "<GRADIENT:#FF0000>This is a red to yellow gradient</GRADIENT:#FFFF00>";
7882
String processedGradient = MatrixColorAPI.process(gradientText);
7983
```
8084

8185
- **Legacy Code Support:**
8286

87+
![Legacy Color Example](https://media.discordapp.net/attachments/1262415791731511347/1291384114905092096/image.png?ex=66ffe6ad&is=66fe952d&hm=b6f9d8dcb41a6f09cd1d2f7609fefda99cc01c14a5b2a351ee9bcb2655e46521&=&format=webp&quality=lossless)
88+
8389
```java
8490
String legacyText = "&aThis is a green text with &lBOLD";
8591
String processedLegacy = MatrixColorAPI.process(legacyText);
8692
```
8793

8894
- **Hex Code Support:**
8995

96+
![Hex Color Example](https://media.discordapp.net/attachments/1262415791731511347/1291384163072610335/image.png?ex=66ffe6b9&is=66fe9539&hm=9938cbc8816a4f5465cde4af5853ca43e2b002855e3a3b00601c94b498a5a6da&=&format=webp&quality=lossless)
97+
9098
```java
9199
String hexText = "&#FFD700This is a yellow text with &lBOLD";
92100
String processedLegacy = MatrixColorAPI.process(hexText);

0 commit comments

Comments
 (0)