Skip to content

Commit

Permalink
feat(#102): color suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
jannis-baum committed Aug 18, 2024
1 parent 8903b13 commit ea035f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
--border-regular: #353535;
--border-muted: #303030;

--icon-directory: #59739c;
--icon-file: #989898;
--icon-directory: var(--icon-file);
--icon-back: var(--text-secondary);

--syntax-text: var(--text-primary);
Expand Down Expand Up @@ -65,8 +65,8 @@
--border-regular: #d0d7de;
--border-muted: #d8dee4;

--icon-directory: #54aeff;
--icon-file: #636c76;
--icon-directory: #54aeff;
--icon-back: var(--text-secondary);

/* source for light mode syntax theme:
Expand Down
4 changes: 4 additions & 0 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ li[class^='dir-list-'] > a {
display: inline-flex;
align-items: center;
padding: 0.05rem 0;
color: var(--text-primary);
}
li[class^='dir-list-'] > a:hover {
color: var(--text-link);
}
li[class^='dir-list-'] > a > svg {
margin-right: 0.3rem;
Expand Down

0 comments on commit ea035f7

Please sign in to comment.