Skip to content

Commit

Permalink
Tweak colors
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechu10 committed Sep 17, 2024
1 parent 27decec commit 2948fe7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
}

code:not(pre code) {
@apply font-mono bg-gray-700 px-1.5 py-0.5 rounded;
@apply font-mono bg-gray-800 px-1.5 py-0.5 rounded;
}

pre {
Expand Down
2 changes: 1 addition & 1 deletion src/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::Routes;
#[component]
pub fn Route(route: ReadSignal<Routes>) -> View {
view! {
div(class="app flex flex-col min-h-screen text-slate-200 bg-slate-900 text-base") {
div(class="app flex flex-col min-h-screen text-slate-200 bg-slate-950 text-base") {
Header()
main(class="mt-6 mx-3 flex-grow") {
(match route.get_clone() {
Expand Down

0 comments on commit 2948fe7

Please sign in to comment.