tailwind.config.js 276 B

12345678910111213141516
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. './index.html',
  5. './src/**/*.{vue,js,ts,jsx,tsx}'
  6. ],
  7. theme: {
  8. extend: {
  9. colors: {
  10. primary: '#34A76B',
  11. 'primary-400': '#38ff6e',
  12. },
  13. }
  14. },
  15. plugins: []
  16. };