This commit is contained in:
2025-07-20 00:24:03 +02:00
parent ef344ea208
commit 417a25197e
4 changed files with 8 additions and 9 deletions

View File

@@ -14,7 +14,6 @@ import remarkTOC from './src/plugins/remark-toc.mjs'
import { themeConfig } from './src/config'
import { imageConfig } from './src/utils/image-config'
import path from 'path'
import netlify from '@astrojs/netlify'
import nodeAdapter from '@astrojs/node'
export default defineConfig({
@@ -30,7 +29,7 @@ export default defineConfig({
},
markdown: {
shikiConfig: {
theme: 'css-variables',
theme: 'kanagawa-dragon',
wrap: false
},
remarkPlugins: [remarkMath, remarkDirective, remarkEmbeddedMedia, remarkReadingTime, remarkTOC],

View File

@@ -15,7 +15,7 @@ export const themeConfig: ThemeConfig = {
contentWidth: '40rem', // Content area width
centeredLayout: true, // Use centered layout (false for left-aligned)
themeToggle: false, // Show theme toggle button (uses system theme by default)
postListDottedDivider: false, // Show dotted divider in post list
postListDottedDivider: true, // Show dotted divider in post list
footer: true, // Show footer
fadeAnimation: true // Enable fade animations
},

View File

@@ -9,4 +9,4 @@ I'm not going to be the next tech bro telling you why my $30k/m AI SaaS is revol
My work is made with pure passion. Raw and real.
Have fun reading my slop. :)
[RSS](/rss.xml) / [Git (Soon)](./)
[RSS](/rss.xml) / [Git (Soon)](./)

View File

@@ -74,14 +74,14 @@ html.light {
/* Dark Mode (Explicit) */
html.dark {
--bg: #1c1c1c;
--text-primary: rgba(255, 255, 255, 0.9);
--text-secondary: rgba(255, 255, 255, 0.4);
--text-tertiary: rgba(255, 255, 255, 0.24);
--bg: #151414;
--text-primary: rgba(197, 201, 197, 1);
--text-secondary: rgba(197, 201, 197, 0.4);
--text-tertiary: rgba(197, 201, 197, 0.24);
--border: rgba(255, 255, 255, 0.1);
--selection: rgba(255, 255, 255, 0.08);
--code-bg: rgba(255, 255, 255, 0.04);
--mark: #545b37;
--mark: #786779;
/* Syntax Theme */
--astro-code-foreground: rgba(255, 255, 255, 0.9);