-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathtailwind.config.js
File metadata and controls
37 lines (37 loc) · 1 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,jsx}'],
theme: {
extend: {
colors: {
sidebar: '#201e27',
'sidebar-deep': '#1a1820',
'sidebar-card': '#252330',
'sidebar-hover': '#2d2b3a',
chat: '#1e1c2a',
'chat-msg-user': '#2e2b3e',
'chat-msg-ai': '#252233',
'chat-input': '#2a2838',
accent: '#9880cc',
'accent-light': '#c8b8e8',
main: '#f5f4f0',
'light-bg': '#f8f7f5',
'light-card': '#f0ede8',
'light-border': '#e5e2dc',
'light-text': '#374151',
'light-text-secondary': '#6b7280',
'event-pink': '#dba8ef',
'event-green': '#86d9a8',
'event-blue': '#90bbec',
'event-amber': '#ecc96a',
'event-gray': '#c0c0c0',
},
fontFamily: {
sans: ['"DM Sans"', 'sans-serif'],
display: ['"DM Serif Display"', 'serif'],
},
},
},
plugins: [],
}