tailwind.config.js 905 B

12345678910111213141516171819202122232425262728293031323334
  1. /** @type {import('tailwindcss').Config} config */
  2. const config = {
  3. content: ['./index.php', './app/**/*.php', './resources/**/*.{php,vue,js}'],
  4. theme: {
  5. extend: {
  6. colors: {
  7. 'jlg': {
  8. 'dark-blue': '#010d19',
  9. 'white': '#f5fefe',
  10. 'light-white': '#f5fefeaa',
  11. 'xlight-white': 'rgba(245, 254, 254, 0.15)',
  12. 'hxlight-white': 'rgba(245, 254, 254, 0.35)',
  13. 'axlight-white': 'rgba(245, 254, 254, 0.20)'
  14. }
  15. }, // Extend Tailwind's default colors
  16. fontFamily: {
  17. 'authentic': ['Authentic_Sans', 'sans-serif'],
  18. 'authentic-60': ['Authentic_Sans_60', 'sans-serif'],
  19. 'caslon': ['Libre_Caslon', 'serif'],
  20. },
  21. fontSize: {
  22. sm: '13px',
  23. base: '15px',
  24. lg: '18px',
  25. xl: '21px',
  26. '2xl': '35px'
  27. }
  28. },
  29. },
  30. plugins: [],
  31. };
  32. export default config;