diff --git a/app.config.ts b/app.config.ts new file mode 100644 index 0000000..1dbf21d --- /dev/null +++ b/app.config.ts @@ -0,0 +1,42 @@ +export default defineAppConfig({ + ui: { + colors: { + primary: "fuchsia", + neutral: "stone", + }, + + global: { + body: "bg-white dark:bg-neutral-950", + }, + container: { + base: "mx-auto", + padding: "px-4 sm:px-6 lg:px-8", + constrained: "max-w-7xl", + background: "", + }, + // Spacious card styling + card: { + base: "overflow-hidden", + background: "bg-white dark:bg-neutral-950", + divide: "divide-y divide-neutral-200 dark:divide-neutral-800", + ring: "ring-1 ring-neutral-200 dark:ring-neutral-800", + rounded: "rounded-lg", + shadow: "shadow", + body: { + base: "", + background: "", + padding: "px-6 py-5 sm:p-6", + }, + header: { + base: "", + background: "", + padding: "px-6 py-4 sm:px-6", + }, + footer: { + base: "", + background: "", + padding: "px-6 py-4 sm:px-6", + }, + }, + }, +}); diff --git a/app.vue b/app.vue index c6d274c..3f61ca6 100644 --- a/app.vue +++ b/app.vue @@ -9,11 +9,9 @@
+ class="flex items-center gap-2 hover:opacity-80 transition-opacity">

+ class="text-black dark:text-white text-center text-2xl font-mono uppercase font-bold"> Urgent Tools

@@ -24,16 +22,14 @@