28 lines
484 B
JavaScript
28 lines
484 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: "class",
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Inter", "system-ui", "sans-serif"]
|
|
},
|
|
colors: {
|
|
brand: {
|
|
50: "#eff6ff",
|
|
100: "#dbeafe",
|
|
500: "#2563eb",
|
|
600: "#1d4ed8",
|
|
700: "#1e40af",
|
|
900: "#172554"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|
|
|