Skip to content

Commit

Permalink
Fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
juberti committed Apr 22, 2024
1 parent dbd1449 commit 99f1ca4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions website/src/components/DataGrid.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import 'ag-grid-community/styles/ag-theme-quartz.css';

.ag-theme-quartz-dark {
font-family: monospace;
--ag-background-color: #292524
--ag-header-background-color: #44403c
--ag-odd-row-background-color: #44403c
--ag-background-color: #27272a;
--ag-header-background-color: #3f3f46;
--ag-odd-row-background-color: #3f3f46;
--good-color: rgb(22 101 52);
--bad-color: rgb(101 22 22);
}
Expand Down
2 changes: 1 addition & 1 deletion website/src/layouts/Base.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const {
</script>
</head>
<body"
class="flex min-h-screen flex-col bg-stone-100 font-mono text-gray-950 dark:bg-gray-800 dark:text-slate-50"
class="flex min-h-screen flex-col bg-stone-100 font-mono text-gray-950 dark:bg-zinc-800 dark:text-slate-50"
>
<Navbar />
<div class="flex-1 text-sm">
Expand Down

0 comments on commit 99f1ca4

Please sign in to comment.