mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 07:47:41 +09:00 
			
		
		
		
	Found via `codespell -q 3 -S "./i18n,./docs/package-lock.json,./readme_i18n,./mobile/assets/i18n" -L afterall,nd,renderd`
		
			
				
	
	
		
			28 lines
		
	
	
		
			781 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			781 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // tailwind.config.js
 | |
| /** @type {import('tailwindcss').Config} */
 | |
| module.exports = {
 | |
|   corePlugins: {
 | |
|     preflight: false, // disable Tailwind's reset
 | |
|   },
 | |
|   content: ['./src/**/*.{js,jsx,ts,tsx}', './{docs,blog}/**/*.{md,mdx}'], // my markdown stuff is in ../docs, not /src
 | |
|   darkMode: ['class', '[data-theme="dark"]'], // hooks into docusaurus' dark mode settings
 | |
|   theme: {
 | |
|     extend: {
 | |
|       colors: {
 | |
|         // Light Theme
 | |
|         'immich-primary': '#4250af',
 | |
|         'immich-bg': '#f9f8fb',
 | |
|         'immich-fg': 'black',
 | |
|         'immich-gray': '#F6F6F4',
 | |
| 
 | |
|         // Dark Theme
 | |
|         'immich-dark-primary': '#adcbfa',
 | |
|         'immich-dark-bg': '#070a14',
 | |
|         'immich-dark-fg': '#e5e7eb',
 | |
|         'immich-dark-gray': '#212121',
 | |
|       },
 | |
|     },
 | |
|   },
 | |
|   plugins: [],
 | |
| };
 |