-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.js
More file actions
19 lines (18 loc) · 775 Bytes
/
Copy paththeme.config.js
File metadata and controls
19 lines (18 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @type {const} */
const themeColors = {
primary: { light: '#4F6EF7', dark: '#6B8AFB' },
background: { light: '#F8F9FF', dark: '#12131A' },
surface: { light: '#FFFFFF', dark: '#1C1E2A' },
foreground: { light: '#1A1D2E', dark: '#E8EAFF' },
muted: { light: '#6B7280', dark: '#9CA3AF' },
border: { light: '#E5E7EB', dark: '#2D3048' },
success: { light: '#22C55E', dark: '#4ADE80' },
warning: { light: '#F59E0B', dark: '#FBBF24' },
error: { light: '#EF4444', dark: '#F87171' },
tint: { light: '#4F6EF7', dark: '#6B8AFB' },
forest: { light: '#10B981', dark: '#059669' },
sunset: { light: '#F97316', dark: '#EA580C' },
midnight: { light: '#312E81', dark: '#1E1B4B' },
pink: { light: '#F472B6', dark: '#FB7185' },
};
module.exports = { themeColors };