-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.c
52 lines (45 loc) · 1.01 KB
/
main.c
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#define TERMINAL_COLOR 0x1d, 0x1f, 0x21
#include "jquery.h"
signed main() {
$(
"<h1>",
(json){ text: "Hello World" }
).css("background-color", "white")
.css("color", "black")
.appendTo("body");
$(
"<p>",
(json){ text: "Italic + Red" }
).css("font-style", "italic")
.css("color", "red")
.appendTo("body");
$(
"<p>",
(json){ text: "Strike + Underline" }
).css("text-decoration", "line-through underline")
.appendTo("body");
$(
"<p>",
(json){ text: "Hex Color" }
).css("background-color", "#e34234")
.css("color", "#ee6")
.appendTo("body");
$(
"<p>",
(json){ text: "Hex Color (opacity-emulation)" }
).css("background-color", "#e3423488")
.css("color", "#ee68")
.appendTo("body");
$(
"<p>",
(json){ text: "Hex Color (opacity-emulation)" }
).css("background-color", "#e3423444")
.css("color", "#ee64")
.appendTo("body");
$(
"<p>",
(json){ text: "Hex Color (opacity-emulation)" }
).css("background-color", "#e3423522")
.css("color", "#ee62")
.appendTo("body");
}