+4
-4
src/styles/base.css
+4
-4
src/styles/base.css
···
7
@import "@catppuccin/tailwindcss/mocha.css";
8
9
* {
10
-
--text-color: rgb(var(--ctp-text));
11
-
--highlight-color: rgb(var(--ctp-rosewater));
12
}
13
14
body {
···
19
h1 {
20
@apply text-4xl;
21
@apply font-extrabold;
22
-
@apply text-[--text-color];
23
}
24
h2 {
25
@apply text-3xl;
···
52
}
53
54
a {
55
-
@apply text-[rgb(var(--ctp-blue))];
56
}
57
58
pre {
···
7
@import "@catppuccin/tailwindcss/mocha.css";
8
9
* {
10
+
--text-color: var(--catppuccin-color-text);
11
+
--highlight-color: var(--catppuccin-color-rosewater);
12
}
13
14
body {
···
19
h1 {
20
@apply text-4xl;
21
@apply font-extrabold;
22
+
@apply text-(--text-color);
23
}
24
h2 {
25
@apply text-3xl;
···
52
}
53
54
a {
55
+
@apply text-(--catppuccin-color-blue);
56
}
57
58
pre {