mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			591 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			591 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',
 | |
| 
 | |
| 				// Dark Theme
 | |
| 				'immich-dark-primary': '#adcbfa',
 | |
| 				'immich-dark-bg': 'black',
 | |
| 				'immich-dark-fg': '#e5e7eb',
 | |
| 				'immich-dark-gray': '#212121'
 | |
| 			},
 | |
| 			fontFamily: {
 | |
| 				'immich-title': ['Snowburst One', 'cursive']
 | |
| 			},
 | |
| 			spacing: {
 | |
| 				18: '4.5rem'
 | |
| 			}
 | |
| 		}
 | |
| 	},
 | |
| 	plugins: []
 | |
| };
 |