diff --git a/public/ascii-art.html b/public/ascii-art.html new file mode 100644 index 0000000..9e5071e --- /dev/null +++ b/public/ascii-art.html @@ -0,0 +1,99 @@ + + +
+ + + + + + @@@@@@@@ @@@@@@@@@
+ @@ @@ @@@ @@
+ @@ @@@ @ @@ @@
+ @@ @@ @@ @ @@ @@ @@
+ @@ @@ @ @@ @@ @@ @
+ @ @@@ @ @@ @@@ @ @
+ @@ @@ @ @ @@ @@ @@
+ @@ @@ @ @@ @@ @@
+ @ @@ @ @@@@@ @@ @@
+ @ @@ @@@@ @@ @@ @@@@@@ @@
+ @ @@ @@@ @@@ @@ @@
+ @@ @@@ @ @@@ @ @@ @@ @@
+ @@@ @@@@@ @@@@ @@@ @@ @@ @@@@ @@
+ @@ @ @@ @@@@@ @@@ @ @
+ @@ @@@@ @ @ @
+ @@ @@ @ @ @ @@ @@
+ @@ @@ @ @ @@ @@ @@
+ @@ @@@@@ @ @ @@ @
+ @ @@@ @ @@ @ @@ @
+ @@ @@@ @ @ @ @@ @@ @
+ @@@ @@ @@ @@ @@
+ @@ @ @ @ @ @
+ @ @ @ @ @@
+ @@ @@ @ @@ @ @
+ @ @@@@@@ @@@ @@ @ @@
+ @ @ @ @@ @ @@ @@ @ @@ @@
+ @@@ @ @ @@@@@@ @ @ @@
+ @ @ @ @ @@@ @@ @@@@ @@
+ @@ @@@@@@@@@@@@@ @@@@ @@@ @@ @@@@@ @
+ @@ @ @ @ @@@ @@@@@@@@@@@ @ @@ @
+ @@ @ @ @ @@ @ @ @@@@ @@ @@
+ @@ @@ @ @@ @ @ @@ @@ @@ @@
+ @@ @ @@ @@@ @ @@ @ @@@@@ @@ @@
+ @@ @@ @@@ @ @@ @@@ @@ @
+ @@ @ @@@ @@ @ @@
+ @ @ @@@ @ @ @@
+ @ @@ @ @ @
+ @@ @@ @ @ @@
+ @ @@ @@ @@@@@@@@
+ @@ @@ @@@@@@@@@@@@@@@@@@@ @@@@@@@@
+ @@ @@@@ @@@@@ @@@ @ @@
+ @@@ @ @@@@ @ @ @@@ @@
+ @@@ @@ @@@ @ @@ @ @@@@@@@@@@@@@@@ @@
+@@ @@ @@@ @ @@ @ @@@@@@ @@
+
+
\ No newline at end of file
diff --git a/src/app/globals.css b/src/app/globals.css
index d0191f5..86caf24 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -48,6 +48,9 @@
--sidebar-accent-foreground: hsl(240 5.9% 10%);
--sidebar-border: hsl(340 20% 90%);
--sidebar-ring: hsl(217.2 91.2% 59.8%);
+
+ --scrollbar: hsla(340 10% 60% / 0.5);
+ --scrollbar-hover: hsla(340 10% 60% / 0.8);
}
.dark {
@@ -84,6 +87,9 @@
--sidebar-border: hsl(296, 18%, 15%);
--sidebar-ring: hsl(217.2 91.2% 59.8%);
--sidebar: hsl(240 5.9% 10%);
+
+ --scrollbar: hsla(340 10% 60% / 0.5);
+ --scrollbar-hover: hsla(340 10% 60% / 0.8);
}
@theme inline {
diff --git a/src/app/scrollbar.css b/src/app/scrollbar.css
index b293db4..48c5624 100644
--- a/src/app/scrollbar.css
+++ b/src/app/scrollbar.css
@@ -4,13 +4,13 @@
}
::-webkit-scrollbar-thumb {
- background: var(--muted-foreground);
+ background: var(--scrollbar);
border: 5px solid var(--background);
border-radius: 16px;
}
::-webkit-scrollbar-thumb:hover {
- background: var(--foreground);
+ background: var(--scrollbar-hover);
}
/* ::-webkit-scrollbar:not(.highlighttable, .highlight table, .gist .highlight) {
diff --git a/src/components/NeoFetch.tsx b/src/components/NeoFetch.tsx
index 7bce4d3..5971682 100644
--- a/src/components/NeoFetch.tsx
+++ b/src/components/NeoFetch.tsx
@@ -11,7 +11,7 @@ export default function NeoFetch() {