26 lines
467 B
TypeScript
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;
|