[READ-ONLY] Mirror of https://github.com/flo-bit/blog-template. minimalistic astro blog template
flo-bit.dev/blog-template/
astro
blog
template
1.1 kB
31 lines
1import type { AccentColors, BaseColors } from "./types";
2
3export const SITE_TITLE = "Blog template";
4export const SITE_DESCRIPTION = "Welcome to my website!";
5export const SITE_FAVICON = "🙃";
6
7// used in the footer (c) YOUR_NAME
8export const NAME = "Your Name";
9
10export const BASE = "/blog-template";
11
12export const site = "https://flo-bit.github.io"
13
14// how many posts to show on per paginated page (also used for tag pages)
15export const POSTS_PER_PAGE = 2;
16
17// should we show the dark mode toggle?
18// (otherwise, it will be based on the user's system preferences)
19export const MANUAL_DARK_MODE = true;
20
21// should we show the search bar?
22export const SEARCH_ENABLED = true;
23
24// shade of gray for the background
25// one of 'gray', 'neutral', 'stone', 'zinc', 'slate'
26export const BASE_COLOR: BaseColors = "stone";
27
28// color of links, etc.
29// one of 'red', 'orange', 'amber', 'yellow', 'lime', 'green', 'emerald', 'teal',
30// 'cyan', 'sky', 'blue', 'indigo', 'violet', 'purple', 'fuchsia', 'pink', 'rose'
31export const ACCENT_COLOR: AccentColors = "amber";