tailwind.config.ts 432 B

12345678910111213141516
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. './src/**/*.{vue,js,ts,jsx,tsx}',
  5. "./index.html",
  6. ],
  7. theme: {
  8. extend: {
  9. colors: {
  10. primary: {"50":"#eff6ff","100":"#dbeafe","200":"#bfdbfe","300":"#93c5fd","400":"#60a5fa","500":"#3b82f6","600":"#2563eb","700":"#1d4ed8","800":"#1e40af","900":"#1e3a8a","950":"#172554"}
  11. }
  12. },
  13. },
  14. plugins: [],
  15. }