mirror of
				https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
				synced 2025-10-30 17:45:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			538 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			538 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /** @type {import('tailwindcss').Config} */
 | |
| export default {
 | |
| 	content: [
 | |
| 		"./routes/**/*.{html,js,svelte,ts,tmpl,gotmpl,gohtml}",
 | |
| 		"./layouts/**/*.{html,js,svelte,ts,tmpl,gotmpl,gohtml}",
 | |
| 		"./transform/**/*.{html,js,svelte,ts,tmpl,gotmpl,gohtml}",
 | |
| 		"./public/**/*.{html,js,svelte,ts,tmpl,gotmpl,gohtml,xsl}",
 | |
| 	],
 | |
| 	theme: {
 | |
| 		extend: {
 | |
| 			fontFamily: {
 | |
| 				script: ["Rancho", "ui-serif"],
 | |
| 				sans: ['"Source Sans 3"', '"Merriweather Sans"', "ui-sans-serif"],
 | |
| 				serif: ['"Merriweather"', "ui-serif"],
 | |
| 			},
 | |
| 		},
 | |
| 	},
 | |
| 	plugins: [],
 | |
| };
 | 
