-
Notifications
You must be signed in to change notification settings - Fork 643
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) Β· 1.2 KB
/
Copy pathtailwind.config.js
File metadata and controls
34 lines (34 loc) Β· 1.2 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
claude: {
bg: 'var(--bg-claude-main)',
sidebar: 'var(--bg-claude-sidebar)',
border: 'var(--border-claude)',
text: 'var(--text-claude-main)',
textSecondary: 'var(--text-claude-secondary)',
accent: 'var(--bg-claude-accent)',
hover: 'var(--bg-claude-hover)',
btnHover: 'var(--bg-claude-btn-hover)',
input: 'var(--bg-claude-input)',
avatar: 'var(--bg-claude-avatar)',
avatarText: 'var(--text-claude-avatar)',
tooltipBg: 'var(--bg-tooltip)',
tooltipText: 'var(--text-tooltip)',
navActive: 'var(--text-nav-active)',
navDisabled: 'var(--text-nav-disabled)',
}
},
fontFamily: {
sans: ['Figtree', 'sans-serif'],
serif: ['Source Serif 4', 'serif'],
system: ['system-ui', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', '"Open Sans"', '"Helvetica Neue"', 'sans-serif'],
}
}
},
plugins: [],
}