-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
26 lines (26 loc) · 1.13 KB
/
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
module.exports = {
content: ["./_includes/**/*.pug", "./_includes/**/*.svg", "./*.pug"],
darkMode: "class",
theme: {
fontFamily: {
sans: "indivisible, -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif",
title:
"new-spirit-condensed, -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif",
serif:
"Source Serif Pro, Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol",
mono: "input-mono-condensed, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace",
},
extend: {
keyframes: {
'fade-in': {
"0%": { opacity: 0, transform: "translateY(20px)" },
"100%": { opacity: 1, transform: "translateY(0)" },
},
},
animation: {
'fade-in': "fade-in 200ms cubic-bezier(0.16, 0, 0.13, 1)",
},
},
},
plugins: [require("@tailwindcss/typography")],
}