mirror of
				https://github.com/CorentinTh/it-tools.git
				synced 2025-10-30 17:52:25 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			383 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			383 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {
 | |
|   defineConfig,
 | |
|   presetAttributify,
 | |
|   presetTypography,
 | |
|   presetUno,
 | |
|   transformerDirectives,
 | |
|   transformerVariantGroup,
 | |
| } from 'unocss';
 | |
| 
 | |
| export default defineConfig({
 | |
|   presets: [presetUno(), presetAttributify(), presetTypography()],
 | |
|   transformers: [transformerDirectives(), transformerVariantGroup()],
 | |
|   theme: {
 | |
|     colors: {
 | |
|       primary: '#1ea54c',
 | |
|     },
 | |
|   },
 | |
| });
 |