first commit

This commit is contained in:
Hydra
2024-04-18 08:46:06 +01:00
commit 91b1341271
165 changed files with 20993 additions and 0 deletions

19
src/renderer/theme.css.ts Normal file
View File

@@ -0,0 +1,19 @@
import { createTheme } from "@vanilla-extract/css";
export const SPACING_UNIT = 8;
export const [themeClass, vars] = createTheme({
color: {
background: "#1c1c1c",
darkBackground: "#151515",
bodyText: "#8e919b",
borderColor: "rgba(255, 255, 255, 0.1)",
},
opacity: {
disabled: "0.5",
active: "0.7",
},
size: {
bodyFontSize: "14px",
},
});