15 lines
532 B
JavaScript
15 lines
532 B
JavaScript
|
|
/** @type {const} */
|
||
|
|
const themeColors = {
|
||
|
|
primary: { light: '#a855f7', dark: '#a855f7' },
|
||
|
|
background: { light: '#080412', dark: '#080412' },
|
||
|
|
surface: { light: '#110820', dark: '#110820' },
|
||
|
|
foreground: { light: '#ede0ff', dark: '#ede0ff' },
|
||
|
|
muted: { light: '#6b4a8a', dark: '#6b4a8a' },
|
||
|
|
border: { light: '#3b1a5c', dark: '#3b1a5c' },
|
||
|
|
success: { light: '#00e87a', dark: '#00e87a' },
|
||
|
|
warning: { light: '#ffb800', dark: '#ffb800' },
|
||
|
|
error: { light: '#ff4455', dark: '#ff4455' },
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = { themeColors };
|