mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:37:11 -04:00 
			
		
		
		
	* Added file selector * Extract metadata to upload files to the web * Added request for uploading * Generate jpeg/Webp thumbnail for asset uploaded without thumbnail data * Added generating thumbnail for video and WebSocket broadcast after thumbnail is generated * Added video length extraction * Added Uploading Panel * Added upload progress store and styling the uploaded asset * Added condition to only show upload panel when there is upload in progress * Remove asset from the upload list after successfully uploading * Added WebSocket to listen to upload event on the web * Added mechanism to check for existing assets before uploading on the web * Added test workflow * Update readme
		
			
				
	
	
		
			20 lines
		
	
	
		
			355 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			355 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
| 	content: ['./src/**/*.{html,js,svelte,ts}'],
 | |
| 	theme: {
 | |
| 		extend: {
 | |
| 			colors: {
 | |
| 				'immich-primary': '#4250af',
 | |
| 				'immich-bg': '#f6f8fe',
 | |
| 				'immich-fg': 'black',
 | |
| 
 | |
| 				// 'immich-bg': '#121212',
 | |
| 				// 'immich-fg': '#D0D0D0',
 | |
| 			},
 | |
| 			fontFamily: {
 | |
| 				'immich-title': ['Snowburst One', 'cursive'],
 | |
| 			},
 | |
| 		},
 | |
| 	},
 | |
| 	plugins: [],
 | |
| };
 |