forked from linode/developers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.js
More file actions
25 lines (19 loc) · 750 Bytes
/
tailwind.js
File metadata and controls
25 lines (19 loc) · 750 Bytes
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
// We import the tailwind settings from the base theme
const config = require("./linode-hugo-theme/tailwind");
// We override (merge) or add specific settings to DLC
config.colors["ThemeCell"] = "#f4f4f4";
config.colors["ThemeBeige"] = "#eCeCeC";
config.colors["ThemeTagGrey"] = "#e1e8eC";
config.colors["ThemeTagGreyLight"] = "#fbfbfb";
config.colors["BaseGreenLight"] = "#f1f9f5";
config.colors["BaseRedLight"] = "#fdF1ef";
config.colors["white"] = "#fff";
config.borderWidths["5"] = "5px";
config.padding["10"] = "2.5rem";
config.padding["12"] = "3rem";
config.padding["16"] = "4rem";
config.padding["20"] = "5rem";
config.leading["xs"] = ".75";
config.leading["text-sm"] = "1.9";
config.maxWidth["3xl"] = "1296px";
module.exports = config;