anything-llm/frontend/tailwind.config.js

14 lines
209 B
JavaScript
Raw Normal View History

2023-06-04 04:28:07 +02:00
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx}"],
theme: {
extend: {
colors: {
'black-900': '#141414',
},
2023-06-04 04:28:07 +02:00
},
},
plugins: [],
}