weather-app/app.config.ts
Argiris Deligiannidis 25883a5362 Finalized codebase
2024-04-14 20:33:51 +03:00

20 lines
436 B
TypeScript

import tailwindConfig from './tailwind.config';
export default defineAppConfig({
ui: {
primary: 'linkwater',
gray: 'cool',
button: {
size: {
normal: 'text-xs font-bold h-8',
},
padding: {
normal: 'px-4',
},
color: {
normal: 'bg-linkwater hover:bg-linkwater/90',
},
},
},
});