diff --git a/src/app/globals.css b/src/app/globals.css index 6dd80bd..53dafa7 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -13,10 +13,10 @@ --popover: 0 0% 100%; --popover-foreground: 222.2 84% 4.9%; - --primary: 222.2 47.4% 11.2%; + --primary: 240 4% 16%; --primary-foreground: 210 40% 98%; - --secondary: 210 40% 96.1%; + --secondary: 0 100% 50%; --secondary-foreground: 222.2 47.4% 11.2%; --muted: 210 40% 96.1%; @@ -32,6 +32,8 @@ --input: 214.3 31.8% 91.4%; --ring: 222.2 84% 4.9%; + --console: 240 10% 4%; + --radius: 0.5rem; } diff --git a/src/app/page.tsx b/src/app/page.tsx index dea9c57..7c4d460 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ export default function Home() { className='fixed text-2xl font-mono text-white z-30 w-1/3' />
= ({title, description, rotate}) => { const [cardIsOverlapped, setCardIsOverlapped] = useState(false); return ( { setCardIsOverlapped(true); }} @@ -132,7 +132,7 @@ const Card: FC = ({title, description, rotate}) => { {description}

) diff --git a/src/components/Console/Console.tsx b/src/components/Console/Console.tsx index 0f3fc09..f7871ad 100644 --- a/src/components/Console/Console.tsx +++ b/src/components/Console/Console.tsx @@ -16,7 +16,7 @@ export const Console: FC = ({children}) => { useCloseConsole(5000); return ( setIsWindowReduced(false) : undefined} animate={{ scale: isConsoleClosed ? .9 : 1, diff --git a/src/components/Console/ConsoleBackground.tsx b/src/components/Console/ConsoleBackground.tsx index eede436..4a1016b 100644 --- a/src/components/Console/ConsoleBackground.tsx +++ b/src/components/Console/ConsoleBackground.tsx @@ -13,7 +13,7 @@ export const ConsoleBackground: FC = ({children}) => { return ( <> = () => { const parentRef = useRef(null); return (
= () => { parentRef={parentRef} />
- - main - + + + master + +
= () => { >
= () => { >
diff --git a/src/components/Console/ConsoleHeader.tsx b/src/components/Console/ConsoleHeader.tsx index d4eabf6..0ec9fb5 100644 --- a/src/components/Console/ConsoleHeader.tsx +++ b/src/components/Console/ConsoleHeader.tsx @@ -14,7 +14,7 @@ export const ConsoleHeader: FC = () => { const {setIsWindowReduced, setIsConsoleClosed} = useContext(globalContext); return (
= () => { parentRef={parentRef} />
JowaDev
= () => { />
= () => { />
setIsConsoleClosed(prevState => !prevState)} /> setIsWindowReduced(prevState => !prevState)} />
diff --git a/src/components/Effect/TypeWritterEffect.tsx b/src/components/Effect/TypeWritterEffect.tsx index d73838a..e4b79e7 100644 --- a/src/components/Effect/TypeWritterEffect.tsx +++ b/src/components/Effect/TypeWritterEffect.tsx @@ -39,7 +39,7 @@ const CursorBlinker = () => { ); } \ No newline at end of file diff --git a/tailwind.config.ts b/tailwind.config.ts index 3dc6ce4..3ed1e93 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -52,6 +52,9 @@ const config = { DEFAULT: "hsl(var(--card))", foreground: "hsl(var(--card-foreground))", }, + console: { + DEFAULT: "hsl(var(--console))", + }, }, borderRadius: { lg: "var(--radius)",