diff --git a/web/src/components/CircleProgressbar.tsx b/web/src/components/CircleProgressbar.tsx index 4062882..1809c6e 100644 --- a/web/src/components/CircleProgressbar.tsx +++ b/web/src/components/CircleProgressbar.tsx @@ -14,14 +14,14 @@ interface Props { position?: "middle" | "bottom"; } -// debugData([ -// { -// action: "circleProgress", -// data: { -// duration: 8000, -// }, -// }, -// ]); +debugData([ + { + action: "circleProgress", + data: { + duration: 8000, + }, + }, +]); const CircleProgressbar: React.FC = () => { const [visible, setVisible] = React.useState(false); @@ -76,7 +76,7 @@ const CircleProgressbar: React.FC = () => { value={value} size="7rem" onAnimationEnd={progressComplete} - color={cancelled ? "rgb(198, 40, 40)" : "blue.300"} + color={cancelled ? "rgb(198, 40, 40)" : "blue.400"} sx={ !cancelled ? { diff --git a/web/src/components/Progressbar.tsx b/web/src/components/Progressbar.tsx index 5ca82ee..47f741c 100644 --- a/web/src/components/Progressbar.tsx +++ b/web/src/components/Progressbar.tsx @@ -19,7 +19,7 @@ debugData([ { action: "progress", data: { - label: "Using lockpick", + label: "Using Lockpick", duration: 8000, }, }, @@ -66,8 +66,8 @@ const Progressbar: React.FC = () => { { } } > - {label} + {label} diff --git a/web/src/index.css b/web/src/index.css index 9a7b933..d5d4b7e 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -1,4 +1,5 @@ @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"); body { background: none !important; diff --git a/web/src/theme/index.ts b/web/src/theme/index.ts index f7f81a5..f92de46 100644 --- a/web/src/theme/index.ts +++ b/web/src/theme/index.ts @@ -1,8 +1,22 @@ -import { extendTheme, type ThemeConfig } from "@chakra-ui/react"; +import { CircularProgress, extendTheme, type ThemeConfig } from "@chakra-ui/react"; const config: ThemeConfig = { initialColorMode: 'dark', useSystemColorMode: false } -export const theme = extendTheme({config}) \ No newline at end of file +export const theme = extendTheme({ + config, + components: { + Progress: { + baseStyle: { + filledTrack: { + bg: 'blue.400' + }, + track: { + bg: 'rgba(0, 0, 0, 0.6)' + } + } + }, + } +}) \ No newline at end of file