From d2caefcae7fc2d84cf7bc48b5ee61bbfe7015886 Mon Sep 17 00:00:00 2001 From: colombefioren Date: Sat, 23 Aug 2025 19:25:02 +0300 Subject: [PATCH 1/2] remove: prisma output custom path --- server/prisma/schema.prisma | 1 - 1 file changed, 1 deletion(-) diff --git a/server/prisma/schema.prisma b/server/prisma/schema.prisma index 1c871fb..369f692 100644 --- a/server/prisma/schema.prisma +++ b/server/prisma/schema.prisma @@ -6,7 +6,6 @@ generator client { provider = "prisma-client-js" - output = "../generated/prisma" } datasource db { From f057393880611795516fff45be49029150967dd7 Mon Sep 17 00:00:00 2001 From: colombefioren Date: Sun, 24 Aug 2025 11:42:53 +0300 Subject: [PATCH 2/2] feat: setup theme colors and font --- client/index.html | 6 +++++- client/src/index.css | 9 +++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/client/index.html b/client/index.html index e4b78ea..9d68165 100644 --- a/client/index.html +++ b/client/index.html @@ -1,8 +1,12 @@ - + + Vite + React + TS diff --git a/client/src/index.css b/client/src/index.css index 7cc56a6..e075c7a 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -1,5 +1,14 @@ @import "tailwindcss"; +@theme { + --font-sans: "Clash Grotesk", system-ui, sans-serif; + --color-primary-dark: #010c19; + --color-primary: #01153e; + --color-primary-light: #052261; + --color-light: #e0e9f5; +} + + @layer base { button { border-radius: 8px;