forked from
quillmatiq.com/augment
Fork of Chiri for Astro for my blog
1import type { ThemeConfig } from './types'
2
3export const themeConfig: ThemeConfig = {
4 // SITE INFO ///////////////////////////////////////////////////////////////////////////////////////////
5 site: {
6 website: 'https://chiri.the3ash.com/', // Site domain
7 title: 'CHIRI', // Site title
8 author: '3ASH', // Author name
9 description: 'Minimal blog built by Astro', // Site description
10 language: 'en-US' // Default language
11 },
12
13 // GENERAL SETTINGS ////////////////////////////////////////////////////////////////////////////////////
14 general: {
15 contentWidth: '35rem', // Content area width
16 centeredLayout: true, // Use centered layout (false for left-aligned)
17 themeToggle: false, // Show theme toggle button (uses system theme by default)
18 postListDottedDivider: false, // Show dotted divider in post list
19 footer: true, // Show footer
20 fadeAnimation: true // Enable fade animations
21 },
22
23 // DATE SETTINGS ///////////////////////////////////////////////////////////////////////////////////////
24 date: {
25 dateFormat: 'YYYY-MM-DD', // Date format: YYYY-MM-DD, MM-DD-YYYY, DD-MM-YYYY, MONTH DAY YYYY, DAY MONTH YYYY
26 dateSeparator: '.', // Date separator: . - / (except for MONTH DAY YYYY and DAY MONTH YYYY)
27 dateOnRight: true // Date position in post list (true for right, false for left)
28 },
29
30 // POST SETTINGS ///////////////////////////////////////////////////////////////////////////////////////
31 post: {
32 readingTime: false, // Show reading time in posts
33 toc: true, // Show table of contents (when there is enough page width)
34 imageViewer: true, // Enable image viewer
35 copyCode: true, // Enable copy button in code blocks
36 linkCard: true // Enable link card
37 }
38}