procurement-frontend2/tailwind.config.ts

31 lines
746 B
TypeScript
Raw Normal View History

2024-08-13 12:59:05 +00:00
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
2024-08-15 06:59:15 +00:00
"./src/widgets/**/*.{js,ts,jsx,tsx,mdx}",
2024-08-13 12:59:05 +00:00
],
theme: {
2024-08-15 06:59:15 +00:00
extend: {},
2024-08-14 03:51:28 +00:00
colors: {
"custom-dark": "#0b2f33",
"custom-blue": "#3998e8",
white: "#fff",
2024-08-15 06:59:15 +00:00
"light-blue": "rgb(72, 159, 225)",
blue: "#0077b6",
"red-500": "rgb(240, 68, 56)",
"light-green": "rgb(74, 192, 63)",
"gray-300": "#d0d5dd",
"gray-500": "#667085",
"gray-700": "#344054",
"gray-900": "rgb(16, 24, 40)",
black: "rgb(50, 48, 58)",
2024-08-14 03:51:28 +00:00
},
2024-08-13 12:59:05 +00:00
},
plugins: [],
};
export default config;