tailwind.config.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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: '#f0f9ff',
  17. 100: '#e0f2fe',
  18. 200: '#bae6fd',
  19. 300: '#7dd3fc',
  20. 400: '#38bdf8',
  21. 500: '#0ea5e9',
  22. 600: '#0284c7',
  23. 700: '#0369a1',
  24. 800: '#075985',
  25. 900: '#0c4a6e',
  26. 950: '#082f49',
  27. },
  28. secondary: {
  29. 50: '#faf5ff',
  30. 100: '#f3e8ff',
  31. 200: '#e9d5ff',
  32. 300: '#d8b4fe',
  33. 400: '#c084fc',
  34. 500: '#a855f7',
  35. 600: '#9333ea',
  36. 700: '#7c3aed',
  37. 800: '#6b21a8',
  38. 900: '#581c87',
  39. 950: '#3b0764',
  40. },
  41. },
  42. backdropBlur: {
  43. xs: '2px',
  44. },
  45. animation: {
  46. 'fade-in': 'fadeIn 0.5s ease-in-out',
  47. 'slide-up': 'slideUp 0.3s ease-out',
  48. },
  49. keyframes: {
  50. fadeIn: {
  51. '0%': { opacity: '0' },
  52. '100%': { opacity: '1' },
  53. },
  54. slideUp: {
  55. '0%': { transform: 'translateY(10px)', opacity: '0' },
  56. '100%': { transform: 'translateY(0)', opacity: '1' },
  57. },
  58. },
  59. },
  60. },
  61. plugins: [
  62. require('daisyui'),
  63. ],
  64. daisyui: {
  65. themes: [
  66. {
  67. kgAdmin: {
  68. 'primary': '#0ea5e9',
  69. 'primary-focus': '#0284c7',
  70. 'primary-content': '#ffffff',
  71. 'secondary': '#a855f7',
  72. 'accent': '#06b6d4',
  73. 'neutral': '#1f2937',
  74. 'base-100': '#ffffff',
  75. 'base-200': '#f8fafc',
  76. 'base-300': '#f1f5f9',
  77. 'info': '#0ea5e9',
  78. 'success': '#10b981',
  79. 'warning': '#f59e0b',
  80. 'error': '#ef4444',
  81. 'neutral-focus': '#111827',
  82. 'neutral-content': '#ffffff',
  83. 'box-shadow': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
  84. },
  85. },
  86. 'light',
  87. 'dark',
  88. ],
  89. darkTheme: 'dark',
  90. base: true,
  91. styled: true,
  92. utils: true,
  93. },
  94. }