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