26 lines
		
	
	
		
			758 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			758 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {
 | 
						|
  defineConfig,
 | 
						|
  presetAttributify,
 | 
						|
  presetTypography,
 | 
						|
  presetUno,
 | 
						|
  transformerDirectives,
 | 
						|
  transformerVariantGroup,
 | 
						|
} from 'unocss';
 | 
						|
 | 
						|
import { presetScrollbar } from 'unocss-preset-scrollbar';
 | 
						|
 | 
						|
export default defineConfig({
 | 
						|
  presets: [presetUno(), presetAttributify(), presetTypography(), presetScrollbar()],
 | 
						|
  transformers: [transformerDirectives(), transformerVariantGroup()],
 | 
						|
  theme: {
 | 
						|
    colors: {
 | 
						|
      primary: '#1ea54c',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  shortcuts: {
 | 
						|
    'pretty-scrollbar': 'scrollbar scrollbar-rounded scrollbar-thumb-color-gray-300 scrollbar-track-color-gray-100 dark:scrollbar-thumb-color-#424242 dark:scrollbar-track-color-#686868',
 | 
						|
    'divider': 'h-1px bg-current op-10',
 | 
						|
    'bg-surface': 'bg-#ffffff dark:bg-#232323',
 | 
						|
  },
 | 
						|
});
 |