Reviewed-on: #270 Reviewed-by: Adam Bem <bema@noreply.example.com> Co-authored-by: widlam <mikolaj.widla@gmail.com> Co-committed-by: widlam <mikolaj.widla@gmail.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			281 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			281 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/** @type {import('tailwindcss').Config} */
 | 
						|
export default {
 | 
						|
  content: [
 | 
						|
    "./index.html",
 | 
						|
    "./src/**/*.{vue,js,ts,jsx,tsx}",
 | 
						|
  ],
 | 
						|
  theme: {
 | 
						|
    extend: {},
 | 
						|
    fontFamily: {
 | 
						|
      'sans': ['Raleway'],
 | 
						|
      'mono': ["Sono"],
 | 
						|
    }
 | 
						|
  },
 | 
						|
  darkMode: 'class',
 | 
						|
  plugins: [],
 | 
						|
} |