Ancient-Programming-Site/tailwind.config.js
2025-02-06 13:51:06 +01:00

24 lines
449 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
purge: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}'
],
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx,vue}",
],
theme: {
extend: {
colors: {
'ancient': '#d3d0c9',
'ancient_highlight': '#fcf8f5',
'ancient_shadow': '#bababa',
},
padding: {
'small': '0.075rem',
}
},
},
plugins: [],
}