-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
36 lines (35 loc) · 955 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
const defaultTheme = require(`tailwindcss/defaultTheme`);
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./site/**/*.{md,njk}", "./.eleventy.js"],
theme: {
extend: {
colors: {
"accent-1": `#EEF0F2`,
"accent-2": `#C6C764`,
"accent-3": `#A2999E`,
"accent-4": `#846A6A`,
"accent-5": `#353B3C`,
},
fontFamily: {
sans: [`Atkinson Hyperlegible`, ...defaultTheme.fontFamily.sans],
},
typography: (theme) => {
return {
DEFAULT: {
css: {
a: {
color: theme(`colors.blue.600`),
},
"code::before": null,
"code::after": null,
"blockquote p:first-of-type::before": null,
"blockquote p:last-of-type::after": null,
},
},
};
},
},
},
plugins: [require("@tailwindcss/typography")],
};