23 lines
		
	
	
		
			487 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			487 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /** @type {import('tailwindcss').Config} */
 | |
| module.exports = {
 | |
|   content: [
 | |
|     "./components/**/*.{js,vue,ts}",
 | |
|     "./layouts/**/*.vue",
 | |
|     "./pages/**/*.vue",
 | |
|     "./plugins/**/*.{js,ts}",
 | |
|     "./app.vue",
 | |
|     "./error.vue",
 | |
|   ],
 | |
|   theme: {
 | |
|     extend: {
 | |
|       colors: {
 | |
|         primary: "#f2c200", // yellow
 | |
|         secondary: "#e2702c", // orange
 | |
|         alert: "#c63f42", // red
 | |
|         surface: "#4f3d4b", // purple
 | |
|         background: "#253e54", // blue
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| };
 |