feat: initialize SysPulse-rs profiler project with Tauri v2 and React

This commit is contained in:
2026-02-22 17:39:34 +01:00
commit ec142b09bd
20 changed files with 1352 additions and 0 deletions

40
tailwind.config.js Normal file
View File

@@ -0,0 +1,40 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
base: "#1e1e2e",
mantle: "#181825",
crust: "#11111b",
surface0: "#313244",
surface1: "#45475a",
surface2: "#585b70",
overlay0: "#6c7086",
overlay1: "#7f849c",
overlay2: "#9399b2",
subtext0: "#a6adc8",
subtext1: "#bac2de",
text: "#cdd6f4",
lavender: "#b4befe",
blue: "#89b4fa",
sapphire: "#74c7ec",
sky: "#89dceb",
teal: "#94e2d5",
green: "#a6e3a1",
yellow: "#f9e2af",
peach: "#fab387",
maroon: "#eba0ac",
red: "#f38ba8",
mauve: "#cba6f7",
pink: "#f5c2e7",
flamingo: "#f2cdcd",
rosewater: "#f5e0dc",
}
},
},
plugins: [],
}