20 lines
436 B
TypeScript
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',
|
|
},
|
|
},
|
|
},
|
|
});
|