mirror of
				https://github.com/inventree/inventree-website.git
				synced 2025-11-04 07:25:46 +00:00 
			
		
		
		
	* add alt tags to lear more
* make logo section better screenreadable
* enhance contrast on footer
* add alt text to back button
* switch colors -> maybe better contrast on links?
* make link text better readable
* switch color back
* and another try
* Revert "and another try"
This reverts commit cb58c92c51.
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			516 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			516 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const defaultTheme = require('tailwindcss/defaultTheme')
 | 
						|
 | 
						|
module.exports = {
 | 
						|
    purge: {
 | 
						|
        enabled: true,
 | 
						|
        content: ['./**/*.html'],
 | 
						|
    },
 | 
						|
    darkMode: 'media',
 | 
						|
    theme: {
 | 
						|
        extend: {
 | 
						|
            colors: {
 | 
						|
                'primary': '#90A8D8',
 | 
						|
                'secondary': '#DDBC91',
 | 
						|
            },
 | 
						|
            screens: {
 | 
						|
                'xs': '470px',
 | 
						|
                ...defaultTheme.screens
 | 
						|
            }
 | 
						|
        },
 | 
						|
    },
 | 
						|
    plugins: [
 | 
						|
        require('@tailwindcss/typography'),
 | 
						|
    ],
 | 
						|
} |