-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 1.09 KB
/
Copy pathtailwind.config.js
File metadata and controls
41 lines (41 loc) · 1.09 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
// Status colors for work items
'status-not-started': '#94a3b8',
'status-in-progress': '#3b82f6',
'status-blocked': '#ef4444',
'status-review': '#f59e0b',
'status-completed': '#22c55e',
// Item type colors
'type-mission': '#7c3aed',
'type-problem': '#dc2626',
'type-solution': '#2563eb',
'type-design': '#d946ef',
'type-project': '#0891b2',
// Notion-like colors
'notion-bg': '#ffffff',
'notion-bg-dark': '#191919',
'notion-sidebar': '#f7f6f3',
'notion-hover': '#ebebea',
'notion-text': '#37352f',
'notion-text-light': '#6b7280',
},
fontFamily: {
notion: [
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Helvetica',
'Apple Color Emoji',
'Arial',
'sans-serif',
],
},
},
},
plugins: [],
};