Files
Tiber365/tailwind.config.js
2025-05-16 00:17:42 +02:00

20 lines
435 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
primary: '#0077cc',
accent: '#2ecc71',
surface: '#f9f9f9',
text: '#333333',
'link-hover': '#005fa3'
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
heading: ['Poppins', 'sans-serif']
}
}
},
plugins: []
}