create-canaima-app 1.0.11 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -0
- package/package.json +1 -2
- package/tauri-material-tailwind/.gitignore copy +24 -0
- package/tauri-material-tailwind/.prettierignore +8 -0
- package/tauri-material-tailwind/.prettierrc +9 -0
- package/tauri-material-tailwind/.vscode/extensions.json +3 -0
- package/tauri-material-tailwind/README.md +7 -0
- package/tauri-material-tailwind/gitignore +24 -0
- package/tauri-material-tailwind/index.html +28 -0
- package/tauri-material-tailwind/package-lock.json +2859 -0
- package/tauri-material-tailwind/package.json +32 -0
- package/tauri-material-tailwind/public/ripple.js +95 -0
- package/tauri-material-tailwind/public/tauri.svg +6 -0
- package/tauri-material-tailwind/public/vite.svg +1 -0
- package/tauri-material-tailwind/src/App.vue +16 -0
- package/tauri-material-tailwind/src/assets/image.png +0 -0
- package/tauri-material-tailwind/src/assets/vue.svg +1 -0
- package/tauri-material-tailwind/src/components/Bienvenido.vue +417 -0
- package/tauri-material-tailwind/src/main.ts +12 -0
- package/tauri-material-tailwind/src/router/index.ts +16 -0
- package/tauri-material-tailwind/src/stores/useAppStore.ts +35 -0
- package/tauri-material-tailwind/src/style.css +22 -0
- package/tauri-material-tailwind/src/views/HomeView.vue +8 -0
- package/tauri-material-tailwind/src/vite-env.d.ts +7 -0
- package/tauri-material-tailwind/src-tauri/Cargo.lock +5471 -0
- package/tauri-material-tailwind/src-tauri/Cargo.toml +33 -0
- package/tauri-material-tailwind/src-tauri/build.rs +3 -0
- package/tauri-material-tailwind/src-tauri/capabilities/default.json +7 -0
- package/tauri-material-tailwind/src-tauri/icons/128x128.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/128x128@2x.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/32x32.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/Square107x107Logo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/Square142x142Logo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/Square150x150Logo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/Square284x284Logo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/Square30x30Logo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/Square310x310Logo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/Square44x44Logo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/Square71x71Logo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/Square89x89Logo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/StoreLogo.png +0 -0
- package/tauri-material-tailwind/src-tauri/icons/icon.icns +0 -0
- package/tauri-material-tailwind/src-tauri/icons/icon.ico +0 -0
- package/tauri-material-tailwind/src-tauri/icons/icon.png +0 -0
- package/tauri-material-tailwind/src-tauri/src/lib.rs +17 -0
- package/tauri-material-tailwind/src-tauri/src/main.rs +6 -0
- package/tauri-material-tailwind/src-tauri/tauri.conf.json +29 -0
- package/tauri-material-tailwind/tsconfig.json +25 -0
- package/tauri-material-tailwind/tsconfig.node.json +10 -0
- package/tauri-material-tailwind/vite.config.ts +33 -0
- package/tauri-materialize/.vscode/settings.json +13 -0
- package/tauri-materialize/gitignore +24 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
@import 'tailwindcss';
|
|
2
|
+
|
|
3
|
+
/* =============== TEMA CANAIMA =============== */
|
|
4
|
+
@theme {
|
|
5
|
+
--color-primary: #0b6793;
|
|
6
|
+
--color-primary-hover: #1079ab;
|
|
7
|
+
--color-dark-bg: #191919;
|
|
8
|
+
--color-dark-surface: #242424;
|
|
9
|
+
--color-dark-surface-deep: #1a1a1a;
|
|
10
|
+
--color-dark-nav: #121212;
|
|
11
|
+
--color-light-bg: #ececec;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/* =============== DARK MODE via clase 'dark' en <html> =============== */
|
|
15
|
+
@variant dark (&:where(.dark, .dark *));
|
|
16
|
+
|
|
17
|
+
/* =============== TRANSICIONES GLOBALES =============== */
|
|
18
|
+
body {
|
|
19
|
+
transition:
|
|
20
|
+
background-color 0.3s ease,
|
|
21
|
+
color 0.3s ease;
|
|
22
|
+
}
|