tailwind.config.js 929 B

1234567891011121314151617181920212223242526272829303132333435
  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': '25px',
  27. '3xl': '35px',
  28. }
  29. },
  30. },
  31. plugins: [],
  32. };
  33. export default config;