mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-18 20:20:11 +01: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: [],
|
||
|
}
|
||
|
|