Skip to content

Commit

Permalink
updated globals colors (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
skull8888888 authored Oct 29, 2024
1 parent 5f97fa4 commit 599a3d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions frontend/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@
--radius: 0.5rem; */

--background: 240 0% 6%;
--foreground: 240 8% 95%;
--background: 0 0% 8%;
--foreground: 0 8% 90%;

--card: 240 8% 10%;
--card: 240 4% 12%;
--card-foreground: 240 8% 80%;

--popover: 240 0% 6%;
--popover-foreground: 240 8% 80%;
--popover: 0 0% 8%;
--popover-foreground: 0 8% 90%;

--primary: 16 83% 59%;
--primary-foreground: 16 0% 91%;

--secondary: 240 4% 11%;
--secondary-foreground: 240 8% 70%;
--secondary: 240 4% 16%;
--secondary-foreground: 0 4% 70%;

--muted: 240 6% 16%;
--muted-foreground: 215 20.2% 65.1%;
Expand Down
4 changes: 2 additions & 2 deletions frontend/components/ui/code-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ export default function CodeEditor({
}

return (
<div className={cn('w-full h-full flex flex-col p-2 bg-secondary text-foreground', className)}>
<div className={cn('w-full h-full flex flex-col p-2 bg-card text-foreground', className)}>
<CodeMirror
placeholder={placeholder}
className="border-none bg-secondary"
className="border-none bg-card"
theme={myTheme}
extensions={extensions}
editable={editable}
Expand Down

0 comments on commit 599a3d5

Please sign in to comment.