diff --git a/web/src/components/CircleProgressbar.tsx b/web/src/components/CircleProgressbar.tsx
index 1809c6e..4a4b6a6 100644
--- a/web/src/components/CircleProgressbar.tsx
+++ b/web/src/components/CircleProgressbar.tsx
@@ -12,6 +12,7 @@ import { fetchNui } from "../utils/fetchNui";
interface Props {
duration: number;
position?: "middle" | "bottom";
+ percent?: boolean;
}
debugData([
@@ -74,9 +75,11 @@ const CircleProgressbar: React.FC = () => {
{
}
}
>
- {value}%
+
+ {value}%
+
diff --git a/web/src/components/Progressbar.tsx b/web/src/components/Progressbar.tsx
index 47f741c..b41ee47 100644
--- a/web/src/components/Progressbar.tsx
+++ b/web/src/components/Progressbar.tsx
@@ -67,8 +67,10 @@ const Progressbar: React.FC = () => {
diff --git a/web/src/components/TextUI.tsx b/web/src/components/TextUI.tsx
index a910652..11f711f 100644
--- a/web/src/components/TextUI.tsx
+++ b/web/src/components/TextUI.tsx
@@ -48,7 +48,14 @@ const TextUI: React.FC = () => {
}
>
-
+
{data.text}
diff --git a/web/src/index.css b/web/src/index.css
index d5d4b7e..829e4e7 100644
--- a/web/src/index.css
+++ b/web/src/index.css
@@ -1,5 +1,6 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap");
-@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap");
+@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&display=swap");
+@import url("https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap");
body {
background: none !important;
diff --git a/web/src/index.tsx b/web/src/index.tsx
index 9b01721..da2a9e9 100644
--- a/web/src/index.tsx
+++ b/web/src/index.tsx
@@ -17,6 +17,7 @@ library.add(fas, far, fab);
if (isEnvBrowser()) {
const root = document.getElementById("root");
+ // https://i.imgur.com/iPTAdYV.png - Night time img
root!.style.backgroundImage = 'url("https://i.imgur.com/3pzRj9n.png")';
root!.style.backgroundSize = "cover";
root!.style.backgroundRepeat = "no-repeat";
diff --git a/web/src/theme/index.ts b/web/src/theme/index.ts
index f92de46..f66be86 100644
--- a/web/src/theme/index.ts
+++ b/web/src/theme/index.ts
@@ -11,10 +11,10 @@ export const theme = extendTheme({
Progress: {
baseStyle: {
filledTrack: {
- bg: 'blue.400'
+ bg: 'green.400'
},
track: {
- bg: 'rgba(0, 0, 0, 0.6)'
+ bg: 'rgba(0, 0, 0, 0.6)'
}
}
},