-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (31 loc) · 728 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
31 lines (31 loc) · 728 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./ui/templates/**/*.gohtml",
"./ui/static/odio.js",
],
theme: {
extend: {
colors: {
// Remap zinc → forest palette (dark green-tinted)
zinc: {
100: '#e4f0e5',
200: '#c4dcc8',
300: '#9ab8a2',
400: '#6a9472',
500: '#3a5440',
600: '#243629',
700: '#1a2a1e',
800: '#131d16',
900: '#0d1410',
950: '#060c08',
},
leaf: '#4a7c59',
moss: '#2a4e35',
lime: '#5ab81e', // bright "active" accent — matches the CTA on odio.love
gold: '#c8963a',
},
},
},
plugins: [],
}