mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	* chore: add edit / create field test * chore: add delete field test * chore: change log class arguments * chore: delete/create row * chore: set tracing log to debug level * fix: filter notification with id * chore: add get single select type option data * fix: high cpu usage * chore: format code * chore: update tokio version * chore: config tokio runtime subscriber * chore: add profiling feature * chore: setup auto login * chore: fix tauri build * chore: (unstable) using controllers * fix: initially authenticated and serializable fix * fix: ci warning * ci: compile error * fix: new folder trash overflow * fix: min width for nav panel * fix: nav panel and main panel animation on hide menu * fix: highlight active page * fix: post merge fixes * fix: post merge fix * fix: remove warnings * fix: change IDatabaseField fix eslint errors * chore: create cell component for each field type * chore: move cell hook into custom cell component * chore: refactor row hook * chore: add tauri clean * chore: add tauri clean * chore: save offset top of nav items * chore: move constants * fix: nav item popup overflow * fix: page rename position * chore: remove offset top * chore: remove floating menu functions * chore: scroll down to new page * chore: smooth scroll and scroll to new folder * fix: breadcrumbs * chore: back and forward buttons nav scroll fix * chore: get board groups and rows * chore: set log level & remove empty line * fix: create kanban board row * fix: appflowy session name * chore: import beautiful dnd * bug: kanban new row * chore: update refs * fix: dispose group controller * fix: dispose cell controller * chore: move rows in group * chore: move row into other block * fix: groups observer dispose * chore: dnd reordering * chore: fix import references * chore: initial edit board modal * fix: kanban board rendering * chore: add column and edit text cell * chore: column rename * chore: edit row components reorganize * chore: don't show group by field * wip: edit cell type * chore: fade in, out * chore: change field type * chore: update editing cell * chore: fade in change * chore: cell options layout * fix: padding fixes for cell wrapper * fix: cell options positions * chore: cell options write to backend * fix: select options for new row * chore: edit url cell * chore: language button * fix: close popup on lang select * fix: save url cell * chore: date picker * chore: small code cleanups * chore: options in board * chore: move fields dnd --------- Co-authored-by: nathan <nathan@appflowy.io> Co-authored-by: Nathan.fooo <86001920+appflowy@users.noreply.github.com> Co-authored-by: appflowy <annie@appflowy.io>
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/** @type {import('tailwindcss').Config} */
 | 
						|
module.exports = {
 | 
						|
  content: [
 | 
						|
    './index.html',
 | 
						|
    './src/**/*.{js,ts,jsx,tsx}',
 | 
						|
    './node_modules/react-tailwindcss-datepicker/dist/index.esm.js',
 | 
						|
  ],
 | 
						|
  darkMode: 'class',
 | 
						|
  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',
 | 
						|
        },
 | 
						|
      },
 | 
						|
      boxShadow: {
 | 
						|
        md: '0px 0px 20px rgba(0, 0, 0, 0.1);',
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
  plugins: [],
 | 
						|
};
 |