Skip to content

Commit 800a037

Browse files
committed
style(scope): change theme to catppuccin
1 parent b2526f9 commit 800a037

File tree

12 files changed

+1429
-432
lines changed

12 files changed

+1429
-432
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ pnpm-debug.log*
2222

2323
# jetbrains setting folder
2424
.idea/
25+
26+
0000_test*

astro.config.mjs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,21 @@ import mdx from "@astrojs/mdx";
44
import sitemap from "@astrojs/sitemap";
55
import { defineConfig } from "astro/config";
66

7+
import tailwindcss from "@tailwindcss/vite";
8+
79
// https://astro.build/config
810
export default defineConfig({
911
site: "https://ragibasif.github.io",
1012
integrations: [mdx(), sitemap()],
13+
1114
markdown: {
1215
shikiConfig: {
13-
theme: "houston",
16+
theme: "catppuccin-mocha",
1417
wrap: true,
1518
},
1619
},
17-
});
20+
21+
vite: {
22+
plugins: [tailwindcss()],
23+
},
24+
});

0 commit comments

Comments
 (0)