forked from slipHQ/truthy.so
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (36 loc) · 905 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
const { fontFamily } = require("tailwindcss/defaultTheme");
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
ibm: ["IBM Plex Sans", ...fontFamily.mono],
},
keyframes: {
shake: {
"0%, 100%": { "margin-left": "0rem" },
"25%": { "margin-left": "0.5rem" },
"75%": { "margin-left": "-0.5rem" },
},
},
animation: {
shake: "shake 0.2s ease-in-out 0s 2",
},
colors: {
"gray-925": "#171717",
"gray-875": "#1A1A1A",
"gray-825": "#252525",
"gray-750": "#323232",
"gray-450": "#8C8C8C",
},
},
},
variants: {
extend: {
opacity: ["disabled"],
},
},
plugins: [require("@tailwindcss/forms")],
};