plane/apps/app/tailwind.config.js

27 lines
619 B
JavaScript
Raw Normal View History

2022-11-19 14:21:26 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.tsx", "./components/**/*.tsx", "./layouts/**/*.tsx", "./ui/**/*.tsx"],
theme: {
extend: {
colors: {
theme: "#4338ca",
primary: "#f9fafb", // gray-50
secondary: "white",
2022-11-19 14:21:26 +00:00
},
keyframes: {
leftToaster: {
"0%": { left: "-20rem" },
"100%": { left: "0" },
},
rightToaster: {
"0%": { right: "-20rem" },
"100%": { right: "0" },
},
},
},
fontFamily: {
custom: ["Inter", "sans-serif"],
},
},
};