Skip to content

Commit

Permalink
main.scss: Attempt to override dark-appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
bmndc committed Jun 16, 2024
1 parent 6c5b55b commit 5e107c7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,33 @@

@import "no-style-please";

@mixin dark-appearance {
html, body {
background: #0F0F0F;
}
body {
color: #F0F0F0;
}
a {
color: #00B55B;
}
}

html, body {
background: #F0F0F0;
}

body {
color: #0F0F0F;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 14px;
line-height: 1.6;
}

a {
color: #006446;
}

img {
width: max-content;
height: max-content;
Expand Down

0 comments on commit 5e107c7

Please sign in to comment.