mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 11:27:46 +01:00
chat feature added
This commit is contained in:
24
tailwind.config.js
Normal file
24
tailwind.config.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./src/**/*.{html,js,svelte,ts}'],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
gray: {
|
||||
50: '#f7f7f8',
|
||||
100: '#ececf1',
|
||||
200: '#d9d9e3',
|
||||
300: '#c5c5d2',
|
||||
400: '#acacbe',
|
||||
500: '#8e8ea0',
|
||||
600: '#565869',
|
||||
700: '#40414f',
|
||||
800: '#343541',
|
||||
900: '#202123',
|
||||
950: '#050509'
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: []
|
||||
};
|
||||
Reference in New Issue
Block a user