-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 2.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<script src="minecraft-text.js" defer></script>
<title>minecraft-text</title>
</head>
<body>
<div>
<minecraft-text>{"text":"This is a testing playground to test cases if they work or not","underlined":true}</minecraft-text>
</div>
<div>
<minecraft-text>{"text":"Extras inside extras:","color":"gray"}</minecraft-text>
<minecraft-text>{"italic":false,"color":"green","extra":[{"color":"aqua","extra":[{"color":"yellow","extra":[{"color":"light_purple","extra":[{"color":"red","extra":[{"color":"gray","extra":[{"color":"blue","text":"s"}],"text":"n"}],"text":"i"}],"text":"a"}],"text":"m"}],"text":"o"}],"text":"D"}</minecraft-text>
</div>
<div>
<minecraft-text>{"text":"Hex colors:","color":"gray"}</minecraft-text>
<minecraft-text>{"bold":true,"italic":false,"extra":[{"color":"#00FFA4","text":"I"},{"color":"#00FF4B","text":"n"},{"color":"#0EFF00","text":"t"},{"color":"#68FF00","text":"e"},{"color":"#C3FF00","text":"r"},{"color":"#FFE100","text":"e"},{"color":"#FF8700","text":"s"},{"color":"#FF2D00","text":"t"},{"color":"#FF002D","text":"i"},{"color":"#FF0086","text":"n"},{"color":"#FF00E0","text":"g"},{"color":"#C300FF","text":" "},{"color":"#6800FF","text":"I"},{"color":"#0F00FF","text":"t"},{"color":"#004BFF","text":"e"},{"color":"#00A5FF","text":"m"},{"color":"#00FFFF","text":"s"},{"text":"!"}],"text":""}</minecraft-text>
</div>
<div>
<minecraft-text>{"text":"Styling preservation:","color":"gray"}</minecraft-text>
<minecraft-text>[{"color":"red"},{"text":"this should be red ","bold":"true"},{"text":"this should be aqua and bold ","color":"aqua"},{"text":"should be black and italic but not bold, next message should be obfuscated ","color":"black","italic":true,"bold":false},{"text":"abcdabcdabcd","obfuscated":true}]</minecraft-text>
</div>
<div>
<minecraft-text>[{"text":"🔥 ","extra":[{"text":"B","color":"#FF0000"},{"text":"u","color":"#FF4000"},{"text":"r","color":"#FF8000"},{"text":"n","color":"#FFBF00"},{"text":"t","color":"#FFFF00"}," 🔥"],"italic":false,"color":"gold"}]</minecraft-text>
</div>
</body>
</html>