forked from score-spec/score.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 981 Bytes
/
tailwind.config.js
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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["content/**/*.md", "layouts/**/*.html"],
theme: {
container: {
center: true,
padding: {
DEFAULT: "20px",
sm: "40px",
lg: "50px",
},
},
extend: {
colors: {
primary: "#D9297D",
secondary: "#B70E5F",
orange: "#F18520",
dark: "#151523",
darker: "#13131F",
light: "#FAFAFB",
lightgray: "#F5F1F3",
muted: "#B9B9BD",
gray: "#6C6C78",
},
fontFamily: {
grostesk: ["Grostesk", ...defaultTheme.fontFamily.sans],
graphik: ["Graphik", ...defaultTheme.fontFamily.sans],
"ibm-plex-mono": ["IBM Plex Mono", ...defaultTheme.fontFamily.mono],
},
},
},
plugins: [],
safelist: [
"highlight-code",
"how-it-works-title-code",
"tab-active",
"tab-pane-active",
],
};