roadmap/quartz.config.ts

88 lines
2.4 KiB
TypeScript
Raw Normal View History

2023-06-04 16:35:45 +00:00
import { QuartzConfig } from "./quartz/cfg"
2023-06-10 06:06:02 +00:00
import * as Component from "./quartz/components"
import * as Plugin from "./quartz/plugins"
2023-05-30 15:02:20 +00:00
2023-06-04 16:35:45 +00:00
const config: QuartzConfig = {
2023-05-30 15:02:20 +00:00
configuration: {
enableSPA: true,
ignorePatterns: ["private", "templates"],
2023-06-01 21:35:31 +00:00
theme: {
typography: { // loaded from Google Fonts
header: "Schibsted Grotesk",
body: "Source Sans Pro",
code: "IBM Plex Mono",
},
colors: {
lightMode: {
light: '#faf8f8',
lightgray: '#e8e8e8',
gray: '#dadada',
darkgray: '#4e4e4e',
dark: '#141021',
secondary: '#284b63',
tertiary: '#84a59d',
highlight: 'rgba(143, 159, 169, 0.15)',
},
darkMode: {
2023-06-17 02:41:59 +00:00
light: '#161618',
2023-06-01 21:35:31 +00:00
lightgray: '#292629',
gray: '#343434',
darkgray: '#d4d4d4',
dark: '#fbfffe',
secondary: '#7b97aa',
tertiary: '#84a59d',
highlight: 'rgba(143, 159, 169, 0.15)',
},
}
}
2023-05-30 15:02:20 +00:00
},
plugins: {
transformers: [
Plugin.FrontMatter(),
2023-06-17 02:41:59 +00:00
Plugin.TableOfContents(),
Plugin.CreatedModifiedDate({
priority: ['frontmatter', 'filesystem'] // you can add 'git' here for last modified from Git but this makes the build slower
}),
Plugin.ObsidianFlavoredMarkdown(),
2023-06-20 03:37:45 +00:00
Plugin.GitHubFlavoredMarkdown(),
Plugin.CrawlLinks(),
Plugin.SyntaxHighlighting(),
Plugin.Katex(),
2023-06-20 03:37:45 +00:00
Plugin.Description(),
2023-05-30 15:02:20 +00:00
],
filters: [
Plugin.RemoveDrafts()
2023-05-30 15:02:20 +00:00
],
emitters: [
2023-06-17 02:41:59 +00:00
Plugin.AliasRedirects(),
Plugin.ContentPage({
2023-06-12 06:46:38 +00:00
head: Component.Head(),
2023-06-18 17:47:07 +00:00
header: [
Component.PageTitle({ title: "🪴 Quartz 4.0" }),
Component.Spacer(),
2023-06-20 03:37:45 +00:00
Component.Search(),
2023-06-18 17:47:07 +00:00
Component.Darkmode()
],
2023-06-17 21:36:06 +00:00
beforeBody: [
2023-06-17 02:41:59 +00:00
Component.ArticleTitle(),
Component.ReadingTime(),
Component.TagList(),
2023-06-17 21:36:06 +00:00
],
2023-06-17 23:05:46 +00:00
content: Component.Content(),
2023-06-17 21:36:06 +00:00
left: [
2023-06-17 02:41:59 +00:00
],
2023-06-17 21:36:06 +00:00
right: [
2023-06-18 17:47:07 +00:00
Component.Graph(),
Component.TableOfContents(),
2023-06-20 03:37:45 +00:00
Component.Backlinks()
2023-06-17 21:36:06 +00:00
],
2023-06-17 02:41:59 +00:00
footer: []
}),
Plugin.ContentIndex(), // you can exclude this if you don't plan on using popovers, graph, or backlinks,
Plugin.CNAME({ domain: "yoursite.xyz" }) // set this to your final deployed domain
2023-05-30 15:02:20 +00:00
]
},
2023-06-04 16:35:45 +00:00
}
export default config