Skip to content

Commit

Permalink
wip 3
Browse files Browse the repository at this point in the history
  • Loading branch information
QbDesu committed Jan 12, 2025
1 parent e536137 commit 21cc943
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
2 changes: 0 additions & 2 deletions app/assets/stylesheets/frontend/base/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ body {
width: 100%;
overflow: hidden;
overflow-y: initial;

background-color: var(--surface-50);
}

.container, .container-fluid {
Expand Down
4 changes: 4 additions & 0 deletions app/assets/stylesheets/frontend/base/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,7 @@
display: inline-block;
}
}

.navbar-default {
background-color: var(--surface-200);
}
29 changes: 15 additions & 14 deletions app/assets/stylesheets/frontend/base/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,26 +36,27 @@ html {
--text-muted: rgba(0, 0, 0, 0.65);
--text-link: var(--primary-400);
--text-visited: var(--primary-300);
}

.dark {
--primary-100: var(--indigo-700);
--primary-200: var(--indigo-600);
--primary-300: var(--indigo-500);
--primary-400: var(--indigo-400);
--surface-50: var(--neutral-950);
--surface-100: var(--neutral-900);
--surface-200: var(--neutral-800);
--surface-300: var(--neutral-700);
--surface-400: var(--neutral-600);
.dark {
--primary-100: var(--indigo-700);
--primary-200: var(--indigo-600);
--primary-300: var(--indigo-500);
--primary-400: var(--indigo-400);

--surface-50: var(--neutral-950);
--surface-100: var(--neutral-900);
--surface-200: var(--neutral-800);
--surface-300: var(--neutral-700);
--surface-400: var(--neutral-600);

--text-primary: rgb(255, 255, 255);
--text-muted: rgba(255, 255, 255, 0.65);
}
--text-primary: rgb(255, 255, 255);
--text-muted: rgba(255, 255, 255, 0.65);
}

body {
background-color: var(--surface-50);
color: var(--text-primary);
}

a:link { color: var(--text-link); }
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/frontend/pages/_start.scss
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ body.page-start {
height: 375px;

&:nth-child(odd) {
background-color: $gray-even-lighter;
background-color: var(--surface-100);
}

a.more {
Expand Down

0 comments on commit 21cc943

Please sign in to comment.