feat: initialize Tauri v2 + Vue 3 project

This commit is contained in:
Your Name
2026-02-17 17:46:39 +02:00
parent e3070461c7
commit 051de9604b
11 changed files with 7787 additions and 0 deletions

57
src/styles/main.css Normal file
View File

@@ -0,0 +1,57 @@
@import "tailwindcss";
@theme {
--color-background: #0F0F0F;
--color-surface: #1A1A1A;
--color-surface-elevated: #242424;
--color-border: #2E2E2E;
--color-text-primary: #FFFFFF;
--color-text-secondary: #A0A0A0;
--color-amber: #F59E0B;
--color-amber-hover: #D97706;
--color-amber-light: #FCD34D;
--color-success: #22C55E;
--color-warning: #F59E0B;
--color-error: #EF4444;
--font-sans: 'IBM Plex Sans', system-ui, sans-serif;
--font-mono: 'IBM Plex Mono', monospace;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body, #app {
height: 100%;
width: 100%;
overflow: hidden;
}
body {
font-family: var(--font-sans);
background-color: var(--color-background);
color: var(--color-text-primary);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Custom scrollbar styles */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--color-surface);
}
::-webkit-scrollbar-thumb {
background: var(--color-border);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--color-text-secondary);
}