mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			672 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			672 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: [],
 | 
						|
};
 |