28 lines
578 B
JavaScript
28 lines
578 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{vue,ts}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
50: "#eff6ff",
|
|
100: "#dbeafe",
|
|
200: "#bfdbfe",
|
|
300: "#93c5fd",
|
|
400: "#60a5fa",
|
|
500: "#1d7afc",
|
|
600: "#1667d9",
|
|
700: "#1456b8",
|
|
800: "#1e40af",
|
|
900: "#0b2455"
|
|
},
|
|
ink: "#172033"
|
|
},
|
|
boxShadow: {
|
|
soft: "0 18px 50px rgba(15, 35, 80, 0.10)"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|