Skip to content
Snippets Groups Projects
tailwind.config.js 1.21 KiB
Newer Older
  • Learn to ignore specific revisions
  • Richard Blechinger's avatar
    Richard Blechinger committed
    // Note that any adjustments to this file must be reflected in custom.scss and tailwind.css
    
    module.exports = {
    
    Richard Blechinger's avatar
    Richard Blechinger committed
        prefix: 'tw-',
        future: {
            removeDeprecatedGapUtilities: true,
            purgeLayersByDefault: true,
    
    Richard Blechinger's avatar
    Richard Blechinger committed
        theme: {
            screens: {
                'sm': '576px',
                'md': '768px',
                'lg': '992px',
                'xl': '1200px',
            },
            cursor: {
                auto: 'auto',
                default: 'default',
                pointer: 'pointer',
                wait: 'wait',
                text: 'text',
                move: 'move',
                'not-allowed': 'not-allowed',
                help: 'help'
            },
            extend: {
                colors: {
                    aura: {
                        purple: '#5029c4'
                    },
                    gray: {
                        '50': '#f9fafb',
                        '100': '#f4f5f7',
                        '200': '#e5e7eb',
                        '300': '#d2d6dc',
                        '400': '#9fa6b2',
                        '500': '#6b7280',
                        '600': '#4b5563',
                        '700': '#374151',
                        '800': '#252f3f',
                        '900': '#161e2e',
                    },
                }
            }
    
    Richard Blechinger's avatar
    Richard Blechinger committed
        variants: {},