Skip to content

Commit

Permalink
Fix blurry fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed May 26, 2021
1 parent f3dfb68 commit f1d9b04
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ui/components/StatusMenu/StatusMenu.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
.statusMenu > a.active {
border-color: #1b1c1d;
color: rgba(0, 0, 0, 0.95);
font-weight: 700;
font-weight: 500;
}

.badge {
Expand Down
26 changes: 21 additions & 5 deletions src/ui/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,21 @@
white-space: pre-wrap;
}


.hljs-comment,
.hljs-quote {
color: #998;
font-style: italic;
}


.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
font-weight: 700;
font-weight: 500;
}


.hljs-literal,
.hljs-number,
.hljs-tag .hljs-attr,
Expand All @@ -24,72 +27,85 @@
color: teal;
}


.hljs-doctag,
.hljs-string {
color: #d14;
}


.hljs-section,
.hljs-selector-id,
.hljs-title {
color: #d73a49;
font-weight: 700;
font-weight: 500;
}

.hljs-class .hljs-title,
.hljs-type,
.hljs-attr {
color: #458;
font-weight: 700;
font-weight: 500;
}


.hljs-attribute,
.hljs-name,
.hljs-tag {
color: navy;
font-weight: 400;
}


.hljs-link,
.hljs-regexp {
color: #009926;
}


.hljs-bullet,
.hljs-symbol {
color: #990073;
}


.hljs-built_in,
.hljs-builtin-name {
color: #0086b3;
}


.hljs-meta {
color: #999;
font-weight: 700;
font-weight: 500;
}


.hljs-deletion {
background: #fdd;
}


.hljs-addition {
background: #dfd;
}


.hljs-emphasis {
font-style: italic;
}


.hljs-strong {
font-weight: 700;
font-weight: 500;
}


.hljs-trace-line {
color: #aaa;
}


.hljs-trace-line .hljs-code-path {
color: #454b52;
}

0 comments on commit f1d9b04

Please sign in to comment.