From d55d8401dc475aa50152c06962946cbdf86c07d9 Mon Sep 17 00:00:00 2001 From: Bartosz Nowak Date: Sat, 14 Oct 2023 11:28:39 +0200 Subject: [PATCH] favicon cleanup & title description --- public/favicon.svg | 7 ++++++- src/global.css | 19 ------------------- src/routes/index.tsx | 4 ++-- 3 files changed, 8 insertions(+), 22 deletions(-) diff --git a/public/favicon.svg b/public/favicon.svg index 0ded7c1..c399bc5 100644 --- a/public/favicon.svg +++ b/public/favicon.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/src/global.css b/src/global.css index af5c7b0..3ed280b 100644 --- a/src/global.css +++ b/src/global.css @@ -5,25 +5,6 @@ * the styles in here will be applied to the Document, without any sort of CSS scoping. * */ - -:root { - --dark-background: #2b2f3a; /* Background (Dark Grayish Bluish) */ - --dark-red: #d43f4a; /* Muted Red */ - --dark-green: #3d8e5d; /* Muted Green */ - --dark-blue: #2f6d99; /* Muted Blue */ - --dark-text: #e0e0e0; /* Text (For light text against dark backgrounds) */ - --dark-subtext: #a0a0a0; /* Subtext (For lesser important text) */ - --dark-devider: #42465b; /* Border/Divider Color */ - - --light-background: #e6eaf0; /* Background (Dark Grayish Bluish) */ - --light-red: #e05a67; /* Muted Red */ - --light-green: #59a883; /* Muted Green */ - --light-blue: #508db3; /* Muted Blue */ - --light-text: #2c2f3b; /* Text (For light text against dark backgrounds) */ - --light-subtext: #6c6f7f; /* Subtext (For lesser important text) */ - --light-devider: #b2b5c3; /* Border/Divider Color */ -} - html { line-height: 1; -webkit-text-size-adjust: 100%; diff --git a/src/routes/index.tsx b/src/routes/index.tsx index b3d8d46..ef779d0 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -6,11 +6,11 @@ export default component$(() => { }); export const head: DocumentHead = { - title: "Welcome to Qwik", + title: "Ksox Finance", meta: [ { name: "description", - content: "Qwik site description", + content: "All in one platform for your crypto business", }, ], };