17 lines
302 B
JavaScript
17 lines
302 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{vue,ts,js}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
admin: {
|
|
500: "#1565c0",
|
|
600: "#134a92",
|
|
700: "#0d3778",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|