mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-03-19 00:22:22 +00:00
13 lines
208 B
JavaScript
13 lines
208 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{js,jsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'black-900': '#141414',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|