mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* Improved asset upload algorithm. - Upload Queue: New process algorithm - Upload Queue: Concurrency correctly respected when dragging / adding multiple group of files to the queue - Upload Task: Add more information about progress (upload speed and remaining time) - Upload Panel: Add more information to about the queue status (Remaining, Errors, Duplicated, Uploaded) - Error recovery: asset information are kept in the queue to give the user a chance to read the error message - Error recovery: on error allow the user to retry the upload or hide the error / all errors * Support "live" editing of the upload concurrency * Fixed some issues * Reformat * fix: merge, linting, dark mode, upload to share --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			905 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			905 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/** @type {import('tailwindcss').Config} */
 | 
						|
module.exports = {
 | 
						|
  content: ['./src/**/*.{html,js,svelte,ts}'],
 | 
						|
  darkMode: 'class',
 | 
						|
  theme: {
 | 
						|
    extend: {
 | 
						|
      colors: {
 | 
						|
        // Light Theme
 | 
						|
        'immich-primary': '#4250af',
 | 
						|
        'immich-bg': 'white',
 | 
						|
        'immich-fg': 'black',
 | 
						|
        'immich-gray': '#F6F6F4',
 | 
						|
        'immich-error': '#e57373',
 | 
						|
        'immich-success': '#81c784',
 | 
						|
        'immich-warning': '#ffb74d',
 | 
						|
 | 
						|
        // Dark Theme
 | 
						|
        'immich-dark-primary': '#adcbfa',
 | 
						|
        'immich-dark-bg': 'black',
 | 
						|
        'immich-dark-fg': '#e5e7eb',
 | 
						|
        'immich-dark-gray': '#212121',
 | 
						|
        'immich-dark-error': '#d32f2f',
 | 
						|
        'immich-dark-success': '#388e3c',
 | 
						|
        'immich-dark-warning': '#f57c00',
 | 
						|
      },
 | 
						|
      fontFamily: {
 | 
						|
        'immich-title': ['Snowburst One', 'cursive'],
 | 
						|
      },
 | 
						|
      spacing: {
 | 
						|
        18: '4.5rem',
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
  plugins: [],
 | 
						|
};
 |