| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: [
- './resources/**/*.blade.php',
- './resources/**/*.js',
- './resources/**/*.vue',
- './vendor/filament/**/*.blade.php',
- ],
- theme: {
- extend: {
- fontFamily: {
- sans: ['Inter', 'var(--font-family-sans)', 'system-ui', 'sans-serif'],
- },
- colors: {
- primary: {
- 50: '#f0f9ff',
- 100: '#e0f2fe',
- 200: '#bae6fd',
- 300: '#7dd3fc',
- 400: '#38bdf8',
- 500: '#0ea5e9',
- 600: '#0284c7',
- 700: '#0369a1',
- 800: '#075985',
- 900: '#0c4a6e',
- 950: '#082f49',
- },
- secondary: {
- 50: '#faf5ff',
- 100: '#f3e8ff',
- 200: '#e9d5ff',
- 300: '#d8b4fe',
- 400: '#c084fc',
- 500: '#a855f7',
- 600: '#9333ea',
- 700: '#7c3aed',
- 800: '#6b21a8',
- 900: '#581c87',
- 950: '#3b0764',
- },
- },
- backdropBlur: {
- xs: '2px',
- },
- animation: {
- 'fade-in': 'fadeIn 0.5s ease-in-out',
- 'slide-up': 'slideUp 0.3s ease-out',
- },
- keyframes: {
- fadeIn: {
- '0%': { opacity: '0' },
- '100%': { opacity: '1' },
- },
- slideUp: {
- '0%': { transform: 'translateY(10px)', opacity: '0' },
- '100%': { transform: 'translateY(0)', opacity: '1' },
- },
- },
- },
- },
- plugins: [
- require('daisyui'),
- ],
- daisyui: {
- themes: [
- {
- kgAdmin: {
- 'primary': '#0ea5e9',
- 'primary-focus': '#0284c7',
- 'primary-content': '#ffffff',
- 'secondary': '#a855f7',
- 'accent': '#06b6d4',
- 'neutral': '#1f2937',
- 'base-100': '#ffffff',
- 'base-200': '#f8fafc',
- 'base-300': '#f1f5f9',
- 'info': '#0ea5e9',
- 'success': '#10b981',
- 'warning': '#f59e0b',
- 'error': '#ef4444',
- 'neutral-focus': '#111827',
- 'neutral-content': '#ffffff',
- 'box-shadow': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
- },
- },
- 'light',
- 'dark',
- ],
- darkTheme: 'dark',
- base: true,
- styled: true,
- utils: true,
- },
- }
|