20 lines
435 B
JavaScript
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: []
|
|
}
|