21 lines
367 B
TypeScript
21 lines
367 B
TypeScript
import { defineThemes } from '../theme/theme.models';
|
|
|
|
export const { useTheme } = defineThemes({
|
|
dark: {
|
|
backgroundColor: '#333333',
|
|
borderColor: '#333333',
|
|
|
|
focus: {
|
|
backgroundColor: '#1ea54c1a',
|
|
},
|
|
},
|
|
light: {
|
|
backgroundColor: '#ffffff',
|
|
borderColor: '#e0e0e69e',
|
|
|
|
focus: {
|
|
backgroundColor: '#ffffff',
|
|
},
|
|
},
|
|
});
|