Initial WinningHunter MVP
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import type { Config } from "tailwindcss";
|
||||
|
||||
const config: Config = {
|
||||
darkMode: "class",
|
||||
content: ["./src/**/*.{ts,tsx}"],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
brand: {
|
||||
DEFAULT: "#6d28d9",
|
||||
fg: "#ffffff"
|
||||
}
|
||||
},
|
||||
boxShadow: {
|
||||
soft: "0 20px 60px rgba(15, 23, 42, 0.08)"
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: []
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user