"tailwindcss": "4.0.14","@tailwindcss/vite": "4.0.14",
@import "tailwindcss" theme(static);@import "@nuxt/ui";@theme { --color-colorname-50: ...; ... --color-colorname-950: ...;}
const _variable = ref("some_value"); const variable = computed({ get: () => _variable.value, set: nextValue => { debugger; _variable.value = nextValue; } });