ohn/tailwind.config.js
2025-03-02 19:08:32 +07:00

33 lines
817 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
primary: {
100: "#def7ec",
200: "#bcf0da",
300: "#84e1bc",
400: "#31c48d",
DEFAULT: "#0d9f6e",
500: "#0d9f6e",
600: "#057a55",
700: "#046c4e",
800: "#03543F",
900: "#014737",
},
},
},
},
plugins: [require("@tailwindcss/forms")],
};