skyjo-fe/tailwind.config.js
2023-10-19 09:36:20 +02:00

38 lines
1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
import colors from "tailwindcss/colors";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/flowbite-react/**/*.js",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
opacity: {
95: "0.95",
},
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
emerald: colors.emerald,
indigo: colors.indigo,
yellow: colors.yellow,
stone: colors.stone,
sky: colors.sky,
neutral: colors.neutral,
gray: colors.gray,
slate: colors.slate,
},
},
},
plugins: [import("flowbite/plugin")],
darkMode: "class",
};