Files
rainbowcroissant/tailwind.config.js
2023-09-02 11:39:25 +05:30

18 lines
254 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,ts,js,svelte}'],
theme: {
extend: {
colors: {
back: {
500: '#fdfdfd',
},
primary: {
500: '#861224',
},
}
}
},
plugins: []
};