Wedding Invitation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tailwind.config.js 444B

12345678910111213141516171819202122232425
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./resources/**/*.blade.php",
  5. "./resources/**/*.js",
  6. ],
  7. theme: {
  8. extend: {
  9. colors: {
  10. babyblue: '#e9f6fb',
  11. babybluedark: '#d2ebef',
  12. navbarcolor: '#5a5b5e',
  13. }
  14. },
  15. screens: {
  16. 'sm': '640px',
  17. 'md': '768px',
  18. 'lg': '1024px',
  19. 'xl': '1280px',
  20. '2xl': '1536px',
  21. },
  22. },
  23. plugins: [],
  24. }