-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.nix
More file actions
45 lines (45 loc) · 1.12 KB
/
config.nix
File metadata and controls
45 lines (45 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
defaultConfig = {
pageTitle = "Quartz Template Nix";
baseUrl = "example.com";
enableSPA = true;
enablePopovers = true;
analytics = {
provider = "plausible";
};
locale = "en-US";
ignorePatterns = ["private" "templates" ".obsidian"];
defaultDateType = "created";
theme = {
fontOrigin = "googleFonts";
cdnCaching = true;
typography = {
header = "Schibsted Grotesk";
body = "Source Sans Pro";
code = "IBM Plex Mono";
};
colors = {
lightMode = {
light = "#faf8f8";
lightgray = "#e5e5e5";
gray = "#b8b8b8";
darkgray = "#4e4e4e";
dark = "#2b2b2b";
secondary = "#284b63";
tertiary = "#84a59d";
highlight = "rgba(143, 159, 169, 0.15)";
};
darkMode = {
light = "#161618";
lightgray = "#393639";
gray = "#646464";
darkgray = "#d4d4d4";
dark = "#ebebec";
secondary = "#7b97aa";
tertiary = "#84a59d";
highlight = "rgba(143, 159, 169, 0.15)";
};
};
};
};
}