kopia lustrzana https://github.com/elk-zone/elk
				
				
				
			
		
			
				
	
	
		
			70 wiersze
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			70 wiersze
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
| import {
 | |
|   defineConfig,
 | |
|   presetAttributify,
 | |
|   presetIcons,
 | |
|   presetTypography,
 | |
|   presetUno,
 | |
|   presetWebFonts,
 | |
|   transformerDirectives,
 | |
|   transformerVariantGroup,
 | |
| } from 'unocss'
 | |
| 
 | |
| export default defineConfig({
 | |
|   shortcuts: [
 | |
|     {
 | |
|       'border-base': 'border-$c-border',
 | |
| 
 | |
|       // background
 | |
|       'bg-base': 'bg-$c-bg-base',
 | |
|       'bg-active': 'bg-$c-bg-active',
 | |
|       'bg-code': 'bg-$c-bg-code',
 | |
| 
 | |
|       // text
 | |
|       'text-base': 'text-$c-text-base',
 | |
|       'text-secondary': 'text-$c-text-secondary',
 | |
| 
 | |
|       // buttons
 | |
|       'btn-base': 'cursor-pointer disabled:opacity-50 disabled:pointer-events-none disabled:saturate-0',
 | |
|       'btn-solid': 'btn-base px-4 py-2 rounded text-white bg-$c-primary hover:bg-$c-primary-active',
 | |
|       'btn-outline': 'btn-base px-4 py-2 rounded text-$c-primary border border-$c-primary hover:bg-$c-primary hover:text-white',
 | |
|       'btn-text': 'btn-base px-4 py-2 text-$c-primary hover:text-$c-primary-active',
 | |
|       'btn-action-icon': 'btn-base hover:bg-active rounded-full h9 w9 flex items-center justify-center',
 | |
| 
 | |
|       // utils
 | |
|       'flex-center': 'items-center justify-center',
 | |
|       'flex-v-center': 'items-center',
 | |
|       'flex-h-center': 'justify-center',
 | |
|     },
 | |
|   ],
 | |
|   presets: [
 | |
|     presetUno({
 | |
|       attributifyPseudo: true,
 | |
|     }),
 | |
|     presetAttributify(),
 | |
|     presetIcons({
 | |
|       scale: 1.2,
 | |
|     }),
 | |
|     presetTypography(),
 | |
|     presetWebFonts({
 | |
|       fonts: {
 | |
|         sans: 'DM Sans',
 | |
|         serif: 'DM Serif Display',
 | |
|         mono: 'DM Mono',
 | |
|         script: 'Homemade Apple',
 | |
|       },
 | |
|     }),
 | |
|   ],
 | |
|   transformers: [
 | |
|     transformerDirectives(),
 | |
|     transformerVariantGroup(),
 | |
|   ],
 | |
|   theme: {
 | |
|     colors: {
 | |
|       primary: {
 | |
|         DEFAULT: 'var(--c-primary)',
 | |
|         active: 'var(--c-primary-active)',
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| })
 |