CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
tailwind.config.js62 linesDownload Raw Back to client
1/** @type {import('tailwindcss').Config} */2export default {3  content: [4    "./index.html",5    "./src/**/*.{js,ts,jsx,tsx}",6  ],7  theme: {8    extend: {9      backgroundImage: {10        'industrial-ai': "url('/bg.png')",11        'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',12        'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',13      },14      colors: {15        background: '#0B0F19', // Deep dark blue/black16        foreground: '#E2E8F0', // Light gray for text17        panel: 'rgba(17, 24, 39, 0.7)', // Glassmorphism panel bg18        accent: '#06b6d4', // Cyan 500 for primary glowing accents19        accentHover: '#0891b2', // Cyan 60020        success: '#10B981',21        warning: '#F59E0B',22        danger: '#EF4444',23        info: '#3B82F6',24        gray: {25          800: 'rgba(31, 41, 55, 0.6)',26          900: 'rgba(17, 24, 39, 0.8)',27        }28      },29      fontFamily: {30        mono: ['"IBM Plex Mono"', 'monospace'],31        sans: ['Inter', 'sans-serif'],32      },33      animation: {34        'blob': 'blob 7s infinite',35        'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',36        'gradient-x': 'gradient-x 15s ease infinite',37      },38      keyframes: {39        blob: {40          '0%': { transform: 'translate(0px, 0px) scale(1)' },41          '33%': { transform: 'translate(30px, -50px) scale(1.1)' },42          '66%': { transform: 'translate(-20px, 20px) scale(0.9)' },43          '100%': { transform: 'translate(0px, 0px) scale(1)' },44        },45        'gradient-x': {46          '0%, 100%': {47            'background-size': '200% 200%',48            'background-position': 'left center',49          },50          '50%': {51            'background-size': '200% 200%',52            'background-position': 'right center',53          },54        },55      },56    },57  },58  plugins: [59    require('@tailwindcss/typography'),60  ],61}62