-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
63 lines (62 loc) · 1.58 KB
/
tailwind.config.js
File metadata and controls
63 lines (62 loc) · 1.58 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
// SPDX-License-Identifier: PMPL-1.0-or-later
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.res",
"./src/**/*.res.js",
"./public/**/*.html",
],
theme: {
extend: {
colors: {
// PanLL colour palette - "Memory Foam" aesthetic
// Indigo: Symbolic/Logic (Pane-L)
// Emerald: Neural/Inference (Pane-N)
// Gray: Neutral/Shared (Pane-W)
panll: {
symbolic: {
50: '#eef2ff',
100: '#e0e7ff',
200: '#c7d2fe',
300: '#a5b4fc',
400: '#818cf8',
500: '#6366f1',
600: '#4f46e5',
700: '#4338ca',
800: '#3730a3',
900: '#312e81',
950: '#1e1b4b',
},
neural: {
50: '#ecfdf5',
100: '#d1fae5',
200: '#a7f3d0',
300: '#6ee7b7',
400: '#34d399',
500: '#10b981',
600: '#059669',
700: '#047857',
800: '#065f46',
900: '#064e3b',
950: '#022c22',
},
},
},
fontFamily: {
mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
sans: ['Inter', 'system-ui', 'sans-serif'],
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'drift-aura': 'driftAura 8s ease-in-out infinite',
},
keyframes: {
driftAura: {
'0%, 100%': { opacity: '0.2' },
'50%': { opacity: '0.3' },
},
},
},
},
plugins: [],
}