From 46f555b0359982f4661d4389e36c656274a06dee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Wed, 19 Jun 2024 22:33:03 +0200 Subject: [PATCH] color update --- graph-ui/components/page.tsx | 4 ++-- graph-ui/components/section.tsx | 2 +- graph-ui/styles/globals.css | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/graph-ui/components/page.tsx b/graph-ui/components/page.tsx index d61df3a..33485cf 100644 --- a/graph-ui/components/page.tsx +++ b/graph-ui/components/page.tsx @@ -4,10 +4,10 @@ import { Handle, Position } from 'reactflow'; function Page({ data }: any) { return ( -
+
-
{data.label}
+
{data.label}
diff --git a/graph-ui/components/section.tsx b/graph-ui/components/section.tsx index 98ca2c1..f3e4097 100644 --- a/graph-ui/components/section.tsx +++ b/graph-ui/components/section.tsx @@ -11,7 +11,7 @@ function Section({ data }: any) {
-
{data.label}
+
{data.label}
diff --git a/graph-ui/styles/globals.css b/graph-ui/styles/globals.css index 2a02875..df30cfc 100644 --- a/graph-ui/styles/globals.css +++ b/graph-ui/styles/globals.css @@ -11,8 +11,8 @@ @media (prefers-color-scheme: dark) { :root { --foreground-rgb: 255, 255, 255; - --background-start-rgb: 0, 0, 0; - --background-end-rgb: 0, 0, 0; + --background-start-rgb: 33, 37, 41; + --background-end-rgb: 33, 37, 41; } }