tailwind.config.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. './resources/**/*.blade.php',
  5. './resources/**/*.js',
  6. './resources/**/*.vue',
  7. './vendor/filament/**/*.blade.php',
  8. ],
  9. theme: {
  10. extend: {
  11. fontFamily: {
  12. sans: ['Inter', 'var(--font-family-sans)', 'system-ui', 'sans-serif'],
  13. },
  14. colors: {
  15. primary: {
  16. 50: '#f2f6ff',
  17. 100: '#dfe8ff',
  18. 200: '#b9ceff',
  19. 300: '#89acff',
  20. 400: '#5c84ff',
  21. 500: '#4163ff',
  22. 600: '#2e46db',
  23. 700: '#2436ab',
  24. 800: '#1f2f85',
  25. 900: '#1c2b69',
  26. },
  27. },
  28. backdropBlur: {
  29. xs: '2px',
  30. },
  31. },
  32. },
  33. plugins: [
  34. require('daisyui'),
  35. ],
  36. daisyui: {
  37. themes: [
  38. {
  39. kgAdmin: {
  40. 'primary': '#4163ff',
  41. 'primary-focus': '#2e46db',
  42. 'primary-content': '#ffffff',
  43. 'secondary': '#6b21a8',
  44. 'accent': '#00c2a8',
  45. 'neutral': '#1f2933',
  46. 'base-100': '#f9fafb',
  47. 'info': '#2563eb',
  48. 'success': '#10b981',
  49. 'warning': '#f59e0b',
  50. 'error': '#ef4444',
  51. },
  52. },
  53. 'dark',
  54. ],
  55. },
  56. }