shellphone.app/tailwind.config.js

30 lines
597 B
JavaScript
Raw Normal View History

const defaultTheme = require("tailwindcss/defaultTheme");
2021-07-18 15:32:45 +00:00
module.exports = {
mode: "jit",
theme: {
extend: {
fontFamily: {
sans: ["Inter var", ...defaultTheme.fontFamily.sans],
},
colors: {
primary: {
2021-07-31 14:33:18 +00:00
50: "#f9fafb",
100: "#eef1fb",
200: "#dbd7f8",
300: "#bcb1ed",
400: "#a286df",
500: "#8861d3",
600: "#7045be",
700: "#663399",
800: "#39236b",
900: "#1f163f",
2021-07-18 15:32:45 +00:00
},
},
},
},
variants: {},
2021-07-31 14:33:18 +00:00
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
purge: ["{pages,app}/**/*.{js,ts,jsx,tsx}"],
};