-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugins.ts
87 lines (79 loc) · 2.21 KB
/
plugins.ts
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import baseBlog from "https://deno.land/x/[email protected]/mod.ts";
import googleFonts from "lume/plugins/google_fonts.ts";
import { merge } from "lume/core/utils/object.ts";
import type { Options as BaseBlogOptions } from "https://deno.land/x/[email protected]/mod.ts";
import "lume/types.ts";
export interface Options extends BaseBlogOptions {
fonts?: {
display?: string;
text?: string;
};
colors?: {
hue?: number;
complement?: number;
analogous?: number;
sathi?: number;
satmid?: number;
satlo?: number;
xlight?: number;
lighter?: number;
lightness?: number;
midrange?: number;
lowmid?: number;
darkness?: number;
darker?: number;
};
}
export const defaults: Options = {
feed: {
output: ["/feed.xml", "/feed.json"],
query: "type=post",
info: {
title: "=metas.site",
description: "=metas.description",
},
items: {
title: "=title",
},
},
fonts: {
display: "https://fonts.google.com/share?selection.family=Bebas+Neue",
text:
"https://fonts.google.com/share?selection.family=Lexend:[email protected]",
},
colors: {
// HSL hues
// In CSS, an `<angle>` is periodic, `<hue>` is normalized to the range
// [0deg, 360deg). It implicitly wraps around such that 480deg is the same
// as 120deg, -120deg is the same as 240deg, -1turn is the same as 1turn,
// and so on. Yet, here we pass an integer 1-359 for each of the
// 3 hue values, to get type checking.
hue: 172,
complement: 351,
analogous: 38,
// color mixing values
sathi: 94, // 80-100
satmid: 54, // 50-70
satlo: 20, // 10-30
xlight: 92, // 84-92
lighter: 83, // 76-84
lightness: 65, // 64-72
midrange: 54, // 48-64
lowmid: 36, // 28-36
darkness: 20, // 16-24
darker: 9, // 0-12
},
};
/** Configure the site */
export default function (userOptions?: Options) {
const options = merge(defaults, userOptions);
return (site: Lume.Site) => {
site.data("colorscheme", options.colors);
site.use(baseBlog(options))
.use(googleFonts({
cssFile: "styles.css",
placeholder: "/* google-fonts */",
fonts: options.fonts,
}));
};
}