-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.js
More file actions
26 lines (23 loc) · 822 Bytes
/
Copy paththeme.config.js
File metadata and controls
26 lines (23 loc) · 822 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
/** @type {const} */
const themeColors = {
primary: { light: '#0a7ea4', dark: '#0a7ea4' }, // Omnivore Blue
background: { light: '#ffffff', dark: '#151718' },
surface: { light: '#f5f5f5', dark: '#1e2022' },
foreground: { light: '#2d2a26', dark: '#ECEDEE' },
muted: { light: '#687076', dark: '#9BA1A6' },
border: { light: '#e8e2d9', dark: '#334155' },
success: { light: '#4caf50', dark: '#4ade80' }, // Omnivore Green
warning: { light: '#f59e0b', dark: '#fbbf24' },
error: { light: '#ef4444', dark: '#f87171' },
tint: { light: '#0a7ea4', dark: '#0a7ea4' },
};
module.exports = { themeColors };
// Highlight colors for notes
const highlightColors = {
yellow: '#fbbf24',
green: '#4ade80',
blue: '#60a5fa',
red: '#f87171',
pink: '#f472b6',
};
module.exports.highlightColors = highlightColors;