Files
hidden11/tailwind.config.ts
T
alexandrev-tibco fa04b20e30 Initial hidden11 MVP
2026-05-02 20:50:36 +02:00

26 lines
467 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./lib/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
pitch: {
950: "#061b12",
900: "#082619",
800: "#0c3a25",
700: "#115c39",
500: "#22a05a"
}
}
},
},
plugins: [],
};
export default config;