25 lines
465 B
TypeScript
25 lines
465 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: ["./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
orange: "#DC2F02",
|
|
orangeDark: "#A82000",
|
|
black: "#000000",
|
|
dark: "#090909",
|
|
panel: "rgba(255,255,255,0.08)"
|
|
}
|
|
},
|
|
boxShadow: {
|
|
glow: "0 0 40px rgba(220,47,2,0.28)"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|
|
|
|
export default config;
|