mirror of
				https://github.com/roc-lang/roc.git
				synced 2025-10-31 13:14:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			279 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			279 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /** @type {import('tailwindcss').Config} */
 | |
| module.exports = {
 | |
|   mode: 'jit',
 | |
|   content: [
 | |
|     "./src/**/*.{js,jsx,ts,tsx}",
 | |
|   ],
 | |
|   theme: {
 | |
|     extend: {
 | |
|       colors: {
 | |
|         'roc-purple': '#7c38f5',
 | |
|         'roc-purple-bg': '#ece2fd',
 | |
|       },
 | |
|     },
 | |
|   },
 | |
|   plugins: [],
 | |
| }
 | |
| 
 | 
