geoproject-app/src/composables/useTextDefaults.js

15 lines
335 B
JavaScript
Raw Normal View History

2026-03-05 14:49:58 +01:00
import { reactive } from 'vue';
// Singleton reactive — TextSettings writes here, ElementPopup reads when disabled
const defaults = reactive({
fontSize: { value: 16, unit: 'px' },
fontFamily: 'Alegreya Sans',
italic: false,
bold: false,
color: 'rgb(0, 0, 0)',
});
export function useTextDefaults() {
return defaults;
}