anything-llm/frontend/tailwind.config.js
Timothy Carambat 0a2f837fb2
improve citations to show all text chunks referred and expand the citation to view full referenced text (#161)
* improve citations to show all text chunks referred and expand the citation to view full referenced text
chunk text of same document together

* remove debug
2023-07-27 22:33:27 -07:00

14 lines
209 B
JavaScript

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