refactor(repo): promote tauri app to repository root

This commit is contained in:
NimBold
2026-06-15 10:33:40 +03:30
parent ab7550d39e
commit 6593f9e76a
346 changed files with 1021 additions and 1490 deletions
+27
View File
@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
sidebar: {
bg: '#1C1C1E',
glass: 'rgba(28, 28, 30, 0.7)',
},
main: {
bg: '#000000',
},
accent: '#0A84FF',
border: '#38383A',
item: {
hover: 'rgba(255, 255, 255, 0.1)',
selected: 'rgba(10, 132, 255, 0.2)',
}
}
},
},
plugins: [],
}