This repository was archived by the owner on May 5, 2026. It is now read-only.
forked from open-webui/open-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
114 lines (113 loc) · 2.35 KB
/
tailwind.config.js
File metadata and controls
114 lines (113 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import typography from '@tailwindcss/typography';
import defaultTheme from 'tailwindcss/defaultTheme';
import containerQuries from '@tailwindcss/container-queries';
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
gray: {
50: '#f9f9f9',
100: '#F4F7FA',
200: '#DBE2E8',
300: '#bcc8d4',
400: '#97A3B4',
450: '#8896AA',
500: '#718095',
600: '#465A75',
700: '#2E4360',
800: '#1D2D42',
850: 'var(--color-gray-850, #262626)',
900: '#0A121C',
950: 'var(--color-gray-950, #0d0d0d)'
},
blue: {
100: '#dbedf8',
200: '#95caeb',
300: '#3196D6',
400: '#1474C4',
500: '#095BB1',
600: '#003D8F',
700: '#0B2A63',
800: '#001B41',
900: '#02102B',
},
red: {
100: '#FFE4E2',
200: '#FFA8A3',
300: '#FF6159',
400: '#F50C00',
500: '#C80A00',
600: '#9C0800',
700: '#6E0500',
},
green: {
100: '#C7FAE2',
200: '#46EFA0',
300: '#12CF76',
400: '#0FA954',
500: '#0C8A44',
600: '#096B35',
700: '#074D26',
},
purple: {
100: '#FAE7FE',
200: '#F0B7FB',
300: '#E480F8',
400: '#D746F5',
500: '#B410E7',
600: '#8212C2',
700: '#560E8A'
},
amber: {
100: '#FFEDCA',
200: '#FFD176',
300: '#FFAA00',
400: '#EF8300',
500: '#C36B00',
600: '#8E4E00',
700: '#603500'
},
sky: {
100: '#D2F6FC',
200: '#7FE4F6',
300: '#11C7E6',
400: '#08A5C5',
500: '#007E9C',
600: '#005B72',
700: '#003D4B'
},
},
boxShadow: {
'l': '5px 5px 15px 2px rgba(0, 0, 0, 0.1)',
'lg': '5px 5px 15px 2px rgba(0, 0, 0, 0.1)',
'xl': '5px 5px 15px 2px rgba(0, 0, 0, 0.1)',
},
fontFamily: {
'sans': ['"OpenSans"', ...defaultTheme.fontFamily.sans],
'overpass': ['"Overpass"', '"OpenSans"', ...defaultTheme.fontFamily.sans],
},
typography: {
DEFAULT: {
css: {
pre: false,
code: false,
'pre code': false,
'code::before': false,
'code::after': false
}
}
},
padding: {
'safe-bottom': 'env(safe-area-inset-bottom)'
},
screens: {
xs: "560px",
"2xl": "1440px",
}
}
},
plugins: [typography, containerQuries]
};