mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-30 17:38:40 +00:00 
			
		
		
		
	
		
			
	
	
		
			48 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			48 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | /** @type {import('tailwindcss').Config} */ | ||
|  | module.exports = { | ||
|  |   content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], | ||
|  |   theme: { | ||
|  |     extend: { | ||
|  |       colors: { | ||
|  |         white: '#ffffff', | ||
|  |         black: '#000000', | ||
|  |         main: { | ||
|  |           accent: '#00BCF0', | ||
|  |           hovered: '#00B7EA', | ||
|  |           secondary: '#E0F8FF', | ||
|  |           selector: '#F2FCFF', | ||
|  |           alert: '#FB006D', | ||
|  |           warning: '#FFD667', | ||
|  |           success: '#66CF80', | ||
|  |         }, | ||
|  |         tint: { | ||
|  |           1: '#E8E0FF', | ||
|  |           2: '#FFE7FD', | ||
|  |           3: '#FFE7EE', | ||
|  |           4: '#FFEFE3', | ||
|  |           5: '#FFF2CD', | ||
|  |           6: '#F5FFDC', | ||
|  |           7: '#DDFFD6', | ||
|  |           8: '#DEFFF1', | ||
|  |           9: '#E1FBFF', | ||
|  |         }, | ||
|  |         shade: { | ||
|  |           1: '#333333', | ||
|  |           2: '#4F4F4F', | ||
|  |           3: '#828282', | ||
|  |           4: '#BDBDBD', | ||
|  |           5: '#E0E0E0', | ||
|  |           6: '#F2F2F2', | ||
|  |         }, | ||
|  |         surface: { | ||
|  |           1: '#F7F8FC', | ||
|  |           2: '#EDEEF2', | ||
|  |           3: '#E2E4EB', | ||
|  |           fiol: '#2C144B', | ||
|  |         }, | ||
|  |       }, | ||
|  |     }, | ||
|  |   }, | ||
|  |   plugins: [], | ||
|  | }; |