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-30 13:21:36 +00:00
|
|
|
"./src/entities/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
"./src/features/**/*.{js,ts,jsx,tsx,mdx}",
|
2024-08-13 12:59:05 +00:00
|
|
|
],
|
|
|
|
theme: {
|
2024-08-16 05:58:38 +00:00
|
|
|
extend: {
|
|
|
|
boxShadow: {
|
|
|
|
"custom-blue": "0px 1px 4px 0px #E3EBFC",
|
|
|
|
},
|
|
|
|
colors: {
|
|
|
|
"custom-dark": "#0b2f33",
|
|
|
|
"custom-blue": "#3998e8",
|
|
|
|
white: "#fff",
|
|
|
|
"light-blue": "rgb(72, 159, 225)",
|
|
|
|
blue: "#3695D8",
|
|
|
|
"red-500": "rgb(240, 68, 56)",
|
|
|
|
"light-green": "rgb(74, 192, 63)",
|
|
|
|
"grey-text": "#66727F",
|
|
|
|
black: "#0B1F33",
|
|
|
|
},
|
2024-08-14 03:51:28 +00:00
|
|
|
},
|
2024-08-13 12:59:05 +00:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|
|
|
|
export default config;
|